Nigel
13e9beea79
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
20 lines
225 B
ArmAsm
20 lines
225 B
ArmAsm
.global LoadGlobalDescriptorTable
|
|
|
|
LoadGlobalDescriptorTable:
|
|
lgdt gdtDescriptor
|
|
|
|
movw $16, %ax
|
|
movw %ax, %ds
|
|
movw %ax, %es
|
|
movw %ax, %fs
|
|
movw %ax, %gs
|
|
movw %ax, %ss
|
|
|
|
jmp $8,$flush
|
|
|
|
flush:
|
|
ret
|
|
|
|
|
|
|