Changeset d2bb9f8a in mainline for arch/mips/src/putchar.c
- Timestamp:
- 2005-08-31T21:56:52Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3e1607f
- Parents:
- 33ccb2c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips/src/putchar.c
r33ccb2c rd2bb9f8a 35 35 void putchar(const char ch) 36 36 { 37 __u32 status = cp0_status_read();37 // __u32 status = cp0_status_read(); 38 38 39 cp0_status_write(cp0_status_read() | cp0_status_erl_error_bit);39 // cp0_status_write(cp0_status_read() | cp0_status_erl_error_bit); 40 40 *((char *) VIDEORAM) = ch; 41 cp0_status_write(status);41 // cp0_status_write(status); 42 42 }
Note:
See TracChangeset
for help on using the changeset viewer.