aboutsummaryrefslogtreecommitdiff
path: root/src/gdt/gdt.asm
blob: c2128e49c726ee8ef05d665901f1a13c0e3b7260 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; GDT flush function
global gdt_flush
extern gp
gdt_flush:
    lgdt [gp]
    mov ax, 0x10 ; Data segment offset of GDT
    mov ds, ax
    mov es, ax
    mov fs, ax
    mov gs, ax
    mov ss, ax
    jmp 0x08:flush2 ; Code segment offset
flush2:
    ret ; Returns to C code