Remove rom and serial boot methods from qemu testing
This commit is contained in:
parent
bfb5b227b6
commit
fc0dd47d48
2 changed files with 8 additions and 8 deletions
8
Makefile
8
Makefile
|
@ -29,7 +29,7 @@ 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 -o $@ $<
|
||||
nasm -s -DCMDLINE='"KERNEL.COM"' -o $@ $<
|
||||
|
||||
fdimage.img: floppy.bs kernel.com
|
||||
dd if=/dev/zero bs=512 count=$$(( $(FD_CYLINDERS) * $(FD_HEADS) * $(FD_SECTORS) )) of=$@
|
||||
|
@ -40,11 +40,5 @@ fdimage.img: floppy.bs kernel.com
|
|||
clean:
|
||||
rm -f *.com *.bin *.rom *.img *.log *.bs *.lst
|
||||
|
||||
qemu-rom: kernel.rom $(DEBUGROM)
|
||||
$(QEMU) $(QEMU_ARGS) -option-rom kernel.rom
|
||||
|
||||
qemu-floppy: fdimage.img $(DEBUGROM)
|
||||
$(QEMU) $(QEMU_ARGS) -boot c -fda fdimage.img
|
||||
|
||||
qemu-serial: boot/serial.bin $(DEBUGROM)
|
||||
$(QEMU) $(QEMU_ARGS) -hda boot/serial.bin
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue