mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-18 23:37:50 +00:00
Add multiboot header and boot.asm
This commit is contained in:
8
src/arch/x86_64/boot.asm
Normal file
8
src/arch/x86_64/boot.asm
Normal file
@@ -0,0 +1,8 @@
|
||||
global start
|
||||
|
||||
section .text
|
||||
bits 32
|
||||
start:
|
||||
; print `OK` to screen
|
||||
mov dword [0xb8000], 0x2f4b2f4f
|
||||
hlt
|
||||
Reference in New Issue
Block a user