Add multiboot header and boot.asm

This commit is contained in:
Philipp Oppermann
2017-04-11 09:01:14 +02:00
parent 79d1032d82
commit 3a05ccd994
2 changed files with 23 additions and 0 deletions

8
src/arch/x86_64/boot.asm Normal file
View File

@@ -0,0 +1,8 @@
global start
section .text
bits 32
start:
; print `OK` to screen
mov dword [0xb8000], 0x2f4b2f4f
hlt