Changeset d2bb9f8a in mainline for arch/mips/src/putchar.c


Ignore:
Timestamp:
2005-08-31T21:56:52Z (20 years ago)
Author:
Jakub Vana <jakub.vana@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3e1607f
Parents:
33ccb2c
Message:

Basic exception support added for ia64 arch ……

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips/src/putchar.c

    r33ccb2c rd2bb9f8a  
    3535void putchar(const char ch)
    3636{
    37         __u32 status = cp0_status_read();
     37//      __u32 status = cp0_status_read();
    3838       
    39         cp0_status_write(cp0_status_read() | cp0_status_erl_error_bit);
     39//      cp0_status_write(cp0_status_read() | cp0_status_erl_error_bit);
    4040        *((char *) VIDEORAM) = ch;
    41         cp0_status_write(status);
     41//      cp0_status_write(status);
    4242}
Note: See TracChangeset for help on using the changeset viewer.