-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed interrupt handler crashing on non-existent interruption
- Loading branch information
azertyfun
committed
Oct 15, 2016
1 parent
ff63e85
commit d4db1d7
Showing
3 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
:interrupt_handler_asm | ||
ife A, 0xFFFE | ||
set PC, scheduler_switch | ||
set PC, interrupt_handler | ||
ifl A, int_table_size ; Protection against interrupts that don't exist | ||
set PC, interrupt_handler | ||
rfi 0 |