aboutsummaryrefslogtreecommitdiffhomepage
path: root/arch/x86/mbr/Makefile
diff options
context:
space:
mode:
authorjohannst <johannst@users.noreply.github.com>2024-12-21 21:02:11 +0000
committerjohannst <johannst@users.noreply.github.com>2024-12-21 21:02:11 +0000
commit267bb0d3d2b7ba892f8f5d88f14f1be1aac0df11 (patch)
tree58d2bc6b702571fc6cce341d1b744f72e6bc1bf2 /arch/x86/mbr/Makefile
parent7abccf12ab6bf023eb0f23f42f2979642194f122 (diff)
downloadnotes-267bb0d3d2b7ba892f8f5d88f14f1be1aac0df11.tar.gz
notes-267bb0d3d2b7ba892f8f5d88f14f1be1aac0df11.zip
deploy: f8221e81b9752548d26675111cffca1947c46b68
Diffstat (limited to 'arch/x86/mbr/Makefile')
-rw-r--r--arch/x86/mbr/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/x86/mbr/Makefile b/arch/x86/mbr/Makefile
new file mode 100644
index 0000000..bcecb76
--- /dev/null
+++ b/arch/x86/mbr/Makefile
@@ -0,0 +1,19 @@
+mbr: mbr.ld mbr.o
+ ld -o $@.elf -nostdlib -T $^
+ objcopy -O binary $@.elf $@
+
+mbr.o: mbr.S
+ gcc -c -o $@ -m32 -ffreestanding $^
+
+clean:
+ $(RM) mbr.o mbr.elf mbr
+
+run: mbr
+ qemu-system-i386 -hda mbr $(QEMU_ARGS)
+
+debug:
+ make run QEMU_ARGS="-s -S"
+
+gdb:
+ gdb -ex 'target remote :1234' mbr.elf -ex 'layout asm' -ex 'b entry_pm32' -ex 'c'
+