Rev 590 | Rev 958 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 590 | Rev 610 | ||
|---|---|---|---|
| Line 91... | Line 91... | ||
| 91 | } |
91 | } |
| 92 | 92 | ||
| 93 | /* Initialize basic tables for exception dispatching */ |
93 | /* Initialize basic tables for exception dispatching */ |
| 94 | void interrupt_init(void) |
94 | void interrupt_init(void) |
| 95 | { |
95 | { |
| 96 | int i; |
- | |
| 97 | - | ||
| 98 | int_register(TIMER_IRQ, "timer", timer_exception); |
96 | int_register(TIMER_IRQ, "timer", timer_exception); |
| 99 | int_register(0, "swint0", swint0); |
97 | int_register(0, "swint0", swint0); |
| 100 | int_register(1, "swint1", swint1); |
98 | int_register(1, "swint1", swint1); |
| 101 | } |
99 | } |