10 lines
136 B
NASM
10 lines
136 B
NASM
bits 32
|
|
|
|
; !!! IDT !!!
|
|
; Loads the IDT defined in '_idtp'
|
|
global _i86_IdtLoad
|
|
extern _idtp
|
|
_i86_IdtLoad:
|
|
lidt [_idtp]
|
|
ret
|