diff options
| author | Ada Christine <adachristine18@gmail.com> | 2022-02-17 13:40:55 +0000 |
|---|---|---|
| committer | Ada Christine <adachristine18@gmail.com> | 2022-02-17 13:40:55 +0000 |
| commit | 9b63c0000b2e0d9d0a306e56dbc7bc28403e5549 (patch) | |
| tree | 17ef5aa53d37c4232f8efcca97c5f118a96fb96f /kc/core/cpu | |
| parent | b8ef8b401d9dd1e15f2703eb997fb79a70ae531a (diff) | |
many changes have happned
- updates to panic() interface
- genericized timer interface
- (yet unused) additions to task management
Diffstat (limited to 'kc/core/cpu')
| -rw-r--r-- | kc/core/cpu/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kc/core/cpu/cpu.c b/kc/core/cpu/cpu.c index 7b48e30..d33d8a4 100644 --- a/kc/core/cpu/cpu.c +++ b/kc/core/cpu/cpu.c @@ -241,7 +241,7 @@ void isr_install(int vec, void (*isr)(void), int trap, unsigned ist) } else if (ist && ist > 7) { - panic(GENERAL_PANIC); + PANIC(GENERAL_PANIC); } } |
