And how to bound the code to interrupt that I have made, exception, and PIC. Thanks
what code can I use
Code: Select all
IDTDESC struc
offset0_15 dw ? ; low word of handler offset
selector0_15 dw ? ; segment selector
zero_byte db 0 ; unused in this descriptor format
access1 db ? ; access right
offset16_31 dw ? ; high word of handler offset
IDTDESC ends
interrupt0 interrupt_descriptor <int0,8,0,8eh,0>
Code: Select all
IDT dq 0
interrupt0 dw int0h
dw 8
dw 0
dw 8fh
dw 0