aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/gdt/gdt.asm
blob: 6cb2b7d4fbea4bc04bc02122fee1d280b735f08b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; 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

global tss_flush
tss_flush:
    mov ax, 0x2B
    ltr ax
    ret