Git - code.swisschili.sh
code.swisschili.sh
/
bluejay
/
01ba07f7bd456375552a06e158fdd4acb3cd0325
/
.
/
src
/
kernel
/
gdt_flush.s
blob: f1dd8acce90341ef5a4eeef30b5ada59293bd623 [
file
] [
log
] [
blame
]
[
bits
32
]
[
global gdt_flush
]
gdt_flush
:
mov eax
,
[
esp
+
4
]
lgdt
[
eax
]
;
Load GDT
mov ax
,
0x10
;
Offset of data segment
mov ds
,
ax
,
mov es
,
ax
mov fs
,
ax
mov gs
,
ax
mov ss
,
ax
jmp
0x08
:
.flush
;
Implicitly reloads the code segment
.flush
:
ret