BarinkOS/source/kernel/interrupts/idt/idt.s
Nigel 13e9beea79 KERNEL: Implementing VMM & cleaning up
Folders now are alll lower case

Started working on the implementation of the Virtual memory manager. Implemented allocate and free page funtionality for as far as I can atm.

Implemented the
2022-09-01 20:16:16 +02:00

7 lines
66 B
ArmAsm

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