Changeset d2bb9f8a in mainline for arch


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 ……

Location:
arch
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • arch/ia64/Makefile.inc

    r33ccb2c rd2bb9f8a  
    1515LFLAGS=-EL -M -T ../arch/ia64/_link.ld
    1616
     17
     18
    1719arch_sources= \
    1820        arch/start.S \
     
    2325        arch/fpu_context.c \
    2426        arch/context.S \
    25         arch/ski/ski.c
     27        arch/ski/ski.c \
     28        arch/cpu/cpu.c \
     29        arch/ivt.S \
     30        arch/interrupt_handler.c
  • arch/ia64/src/dummy.s

    r33ccb2c rd2bb9f8a  
    3434.global before_thread_runs_arch
    3535.global arch_late_init
    36 .global cpu_arch_init
    3736.global cpu_identify
    3837.global cpu_print_report
     
    5049asm_delay_loop:
    5150arch_late_init:
    52 cpu_arch_init:
    5351cpu_identify:
    5452cpu_print_report:
  • 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.