From 3c9e2cf32c75d556087e68fbb5bad125a7b051cc Mon Sep 17 00:00:00 2001 From: Ry Date: Thu, 27 Oct 2022 19:07:22 -0700 Subject: [PATCH] Fix setting the breakpoint exception handler to the wrong exception oops --- main.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.asm b/main.asm index b9827f5..957c58a 100644 --- a/main.asm +++ b/main.asm @@ -52,7 +52,7 @@ entry_seed_done: mov [0x0000040C], system_page_fault_handler ; set the exception vector for exception 0x04 - breakpoint - mov [0x0000040C], system_breakpoint_handler + mov [0x00000410], system_breakpoint_handler ; enable interrupts ise