intr: Ship table with first 16 ISR offsets

This commit is contained in:
Nero 2019-04-09 22:38:20 +00:00
parent befad93b30
commit ac8e07d5ce
3 changed files with 95 additions and 42 deletions

View file

@ -10,21 +10,15 @@ _startup:
; so we need a nop sled
times (0x10 - ($-$$)) nop
main:
call hma_relocate
call ivt_backup
call debug_init
call intr_init
int 0x2E
mov ax,0x1234
int 0x2E
call kprint16
int 3
sti
.halt:
hlt
jmp .halt
%include "hma.asm"
%include "heap.asm"
%include "intr.asm"
%include "debug.asm"