Files
BarinkOS/src/kernel/Interrupts/idt/idt.s
Nigel 3b3e2597a1 Restructering Kernel folder before moving to higher half kernel
The boot up process will be changed somewhat dramatically, therefor a
restructering of the kernel seems as a good starting point.
2022-08-17 14:29:26 +02:00

7 lines
66 B
ArmAsm

.globl idt_flush
idt_flush:
mov 4(%esp), %eax
lidt (%eax)
ret