aboutsummaryrefslogtreecommitdiff
path: root/src/arch/x86_64/boot.asm
blob: 1a531c085fdf822be9b92398c3a4ea47fe447e51 (plain)
1
2
3
4
5
6
7
8
global start

section .text
bits 32
start:
    ; print `OK` to screen
    mov dword [0xb8000], 0x2f4b2f4f
    hlt