summaryrefslogtreecommitdiff
path: root/sys/arch/amd64/cpu/boot.S
blob: 493a436a69f57e79dadb042acda1aab19aa42001 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
    .globl _start
    .extern uart_init
_start:
    cli
    cld

    xor %rbp, %rbp
    call uart_init

1:  cli
    hlt
    jmp 1b

/* vim: ft=gas :
*/