Cucumber/Kernel/src/Tier0/gdt.asm

17 lines
197 B
NASM
Raw Normal View History

BITS 64
2011-02-21 11:23:58 +00:00
section .text
global gdt_flush
extern g_GDTPointer
2011-02-21 11:23:58 +00:00
gdt_flush:
lgdt [g_GDTPointer]
mov ax, 0x20
2011-02-21 11:23:58 +00:00
mov ds, ax
mov es, ax
mov fs, ax
mov gs, ax
mov ss, ax
ret