Improve assembler: can now properly assemble lain.com

This commit is contained in:
Nero 2023-01-01 20:44:43 +00:00
parent 77b1ad7cef
commit 5100d1d84e
5 changed files with 2170 additions and 91 deletions

View file

@ -23,7 +23,8 @@ default: fd$(FLOPPY).img
# COM programs
%.com: src/%.asm src/*.inc
$(NASM) $(NASM_ARGS) -Isrc -l $(@:.com=.lst) -o $@ $<
$(AS) $@ $<
# $(NASM) $(NASM_ARGS) -Isrc -l $(@:.com=.lst) -o $@ $<
# Bootloader images
%.bs: boot/%.asm