Changeset af9a7c5 in mainline for arch/mips32/src/drivers/msim.c
- Timestamp:
- 2005-12-12T15:38:44Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 93b84b3
- Parents:
- c0b7f00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips32/src/drivers/msim.c
rc0b7f00 raf9a7c5 31 31 #include <arch/drivers/msim.h> 32 32 #include <arch/cp0.h> 33 #include <console/console.h> 33 34 34 35 static chardev_t console; … … 78 79 79 80 /* Return console object representing msim console */ 80 chardev_t *msim_console(void)81 void msim_console(void) 81 82 { 82 83 chardev_initialize("msim_console", &console, &msim_ops); … … 86 87 cp0_unmask_int(MSIM_KBD_IRQ); 87 88 88 return &console; 89 stdin = &console; 90 stdout = &console; 89 91 }
Note:
See TracChangeset
for help on using the changeset viewer.