aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/boot/long_mode_init.asm
blob: 22e7fd4a0da88e79d6adf7d9c3ca7ba2314a5e07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
global long_mode_start

section .text
bits 64
long_mode_start:
    ; load 0 into all data segment registers
    mov ax, 0
    mov ss, ax
    mov ds, ax
    mov es, ax
    mov fs, ax
    mov gs, ax

    extern main
    call main

    hlt