Create a simple bootloader with nasm

This commit is contained in:
manzerbredes 2015-07-17 17:14:42 +04:00
parent bd68108ff3
commit c83e3bf27f
2 changed files with 22 additions and 0 deletions

8
bootloader/Makefile Normal file
View file

@ -0,0 +1,8 @@
bootloader.bin: bootloader.asm
nasm -f bin -o $@ $^
clean:
rm bootloader.bin

14
bootloader/bootloader.asm Normal file
View file

@ -0,0 +1,14 @@
[BITS 16]
;Save the first adress in with start label
start:
;Init CPU registers
mov ax, 0x0C70
mov ds, ax ;Init data segment
;Complete the MBR with nothing
times 510 - ($ - start) db 0x0
;Declare magic number
dw 0xAA55