rdos/Makefile

45 lines
1.0 KiB
Makefile
Raw Normal View History

2019-03-31 15:22:24 +02:00
FD_CYLINDERS = 40
FD_HEADS = 2
FD_SECTORS = 9
QEMU_ARCH = $(shell uname -m)
QEMU = qemu-system-$(QEMU_ARCH)
ifdef KVM
QEMU_ARGS += --enable-kvm
endif
ifdef DEBUG
2019-09-07 01:42:39 +02:00
QEMU_ARGS += -option-rom debug.rom
DEBUGROM = debug.rom
endif
ifndef DISPLAY
QEMU_ARGS += --display curses
endif
.PHONY: default clean qemu-rom qemu-floppy
default: kernel.rom
kernel.com: kernel/*.asm lib/*.inc
nasm -s -o $@ -l kernel.lst -I lib -I kernel kernel/main.asm
2019-03-25 09:51:37 +01:00
2019-09-07 01:42:39 +02:00
debug.rom: debug/*.asm lib/*.inc
nasm -s -o $@ -I lib -I debug debug/main.asm && scripts/fix-rom.sh $@
floppy.bs: boot/fatvbr.asm
nasm -s -DCMDLINE='"KERNEL.COM"' -o $@ $<
2019-03-25 09:51:37 +01:00
fdimage.img: floppy.bs kernel.com
2019-03-31 15:22:24 +02:00
dd if=/dev/zero bs=512 count=$$(( $(FD_CYLINDERS) * $(FD_HEADS) * $(FD_SECTORS) )) of=$@
mformat -i $@ -t $(FD_CYLINDERS) -h $(FD_HEADS) -n $(FD_SECTORS) -B floppy.bs ::
mcopy -i $@ kernel.com ::kernel.com
mattrib -i $@ +s ::kernel.com
clean:
rm -f *.com *.bin *.rom *.img *.log *.bs *.lst
2019-09-07 01:42:39 +02:00
qemu-floppy: fdimage.img $(DEBUGROM)
$(QEMU) $(QEMU_ARGS) -boot c -fda fdimage.img