Create a simple bootloader with nasm
This commit is contained in:
parent
bd68108ff3
commit
c83e3bf27f
2 changed files with 22 additions and 0 deletions
8
bootloader/Makefile
Normal file
8
bootloader/Makefile
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
bootloader.bin: bootloader.asm
|
||||||
|
nasm -f bin -o $@ $^
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm bootloader.bin
|
14
bootloader/bootloader.asm
Normal file
14
bootloader/bootloader.asm
Normal 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
|
Loading…
Add table
Reference in a new issue