Remove BASE macro and companions
This commit is contained in:
parent
c67894551b
commit
9044e3948c
2 changed files with 4 additions and 4 deletions
6
Makefile
6
Makefile
|
@ -42,15 +42,15 @@ vga11.com: cp437.bin
|
|||
|
||||
# COM programs
|
||||
%.com: com/%.asm
|
||||
$(NASM) $(NASM_ARGS) -DBASE=0x0100 -DCOM -o $@ $<
|
||||
$(NASM) $(NASM_ARGS) -o $@ $<
|
||||
|
||||
# Bootloaders, first sector on partition
|
||||
%.bs: boot/%.asm
|
||||
$(NASM) $(NASM_ARGS) -DBASE=0x7C00 -DBOOT -o $@ $<
|
||||
$(NASM) $(NASM_ARGS) -o $@ $<
|
||||
|
||||
# BIOS option roms
|
||||
%.rom: rom/%.asm utils/fix-rom
|
||||
$(NASM) $(NASM_ARGS) -DBASE=0x0000 -DROM -o $@ $< && utils/fix-rom $@
|
||||
$(NASM) $(NASM_ARGS) -o $@ $< && utils/fix-rom $@
|
||||
|
||||
fdimage.img: fat.bs $(DISTFILES)
|
||||
mformat -C -i $@ -f $(FLOPPY) -B fat.bs ::
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue