Changeset d6cc453 in mainline for console/console.c
- Timestamp:
- 2006-06-02T19:22:08Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 53daee3
- Parents:
- e87e18f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
console/console.c
re87e18f rd6cc453 285 285 case CONSOLE_PUTCHAR: 286 286 write_char(consnum, IPC_GET_ARG1(call)); 287 gcons_notify_char(consnum); 287 288 break; 288 289 case CONSOLE_CLEAR: … … 297 298 case CONSOLE_GOTO: 298 299 299 screenbuffer_goto(&(connections[consnum].screenbuffer), IPC_GET_ARG 1(call), IPC_GET_ARG2(call));300 screenbuffer_goto(&(connections[consnum].screenbuffer), IPC_GET_ARG2(call), IPC_GET_ARG1(call)); 300 301 301 302 break; 302 303 303 304 case CONSOLE_GETSIZE: 304 arg1 = fb_info. cols;305 arg2 = fb_info. rows;305 arg1 = fb_info.rows; 306 arg2 = fb_info.cols; 306 307 break; 307 308 case CONSOLE_FLUSH:
Note:
See TracChangeset
for help on using the changeset viewer.