Add default exception handler for page fault writes

This commit is contained in:
Ry 2022-09-15 17:43:53 -07:00
parent e70e5c37ea
commit f10b1d5635

View File

@ -39,9 +39,12 @@ entry_seed_done:
; set the interrupt vector for interrupt 0xFF - vsync
mov [0x000003FC], system_vsync_handler
; set the exception vector for exception 0x02 - page fault
; set the exception vector for exception 0x02 - page fault read
mov [0x00000408], system_page_fault_handler
; set the exception vector for exception 0x03 - page fault write
mov [0x0000040C], system_page_fault_handler
; enable interrupts
ise