add simple boot loader example

This commit is contained in:
Joe Tretter
2025-08-29 19:07:30 -05:00
parent fb071d2000
commit e29dc737ad
2 changed files with 24 additions and 0 deletions

3
bootloader1/compile.sh Executable file
View File

@@ -0,0 +1,3 @@
nasm -f bin boot.asm -o boot.bin
dd if=boot.bin of=floppy.img bs=512 count=1 conv=notrunc
qemu-system-x86_64 -fda floppy.img