Remove command line parsing from bootloader

This commit is contained in:
Nero 2019-09-23 20:25:39 +00:00
parent e94059c625
commit 705cd5c725
2 changed files with 3 additions and 54 deletions

View file

@ -32,7 +32,7 @@ debug.rom: debug/*.asm lib/*.asm
nasm -s -o $@ -I lib -I debug debug/main.asm && scripts/fix-rom.sh $@
boot/%.bs: boot/%.asm
nasm -s -DFLOPPY=$(FLOPPY) -DCMDLINE='"KERNEL.COM"' -o $@ $<
nasm -s -DFLOPPY=$(FLOPPY) -o $@ $<
programs/%.com: programs/%.asm
nasm -s -I lib -o $@ $<