luxos/SysCore/drivers/cpu/idt/idt.asm

10 lines
136 B
NASM
Raw Normal View History

2021-09-14 15:34:14 +00:00
bits 32
; !!! IDT !!!
; Loads the IDT defined in '_idtp'
2021-09-14 15:46:50 +00:00
global _i86_IdtLoad
2021-09-14 15:34:14 +00:00
extern _idtp
2021-09-14 15:46:50 +00:00
_i86_IdtLoad:
2021-09-14 15:34:14 +00:00
lidt [_idtp]
ret