2
Fork 0

Updated to lastest msxbuild version.

This commit is contained in:
Willem Cazander 2024-06-29 03:29:29 +02:00
parent 256a50ce80
commit 09666a622e
11 changed files with 30 additions and 36 deletions

View file

@ -10,22 +10,22 @@ $(LEVELS_BIN):
#cp $(LEVELS_SRC)/*.00* $(LEVELS_BIN);
$(LEVELS_BIN)/code001.rel: $(LEVELS_SRC)/code001.asm | $(LEVELS_BIN)
$(call mb_compile_asm,$@,$<)
$(call mb_sdcc_compile_asm,$@,$<)
$(LEVELS_BIN)/code002.rel: $(LEVELS_SRC)/code001.asm | $(LEVELS_BIN)
$(call mb_compile_asm,$@,$<)
$(call mb_sdcc_compile_asm,$@,$<)
$(LEVELS_BIN)/code001.hex: $(LEVELS_BIN)/code001.rel
$(call mb_link_asm_1000,$@,$<)
$(call mb_sdcc_link_asm_1000,$@,$<)
$(LEVELS_BIN)/code002.hex: $(LEVELS_BIN)/code002.rel
$(call mb_link_asm_1000,$@,$<)
$(call mb_sdcc_link_asm_1000,$@,$<)
$(LEVELS_BIN)/code001.dat: $(LEVELS_BIN)/code001.hex
$(call mb_hex2bin,$<,$@)
$(call mb_sdcc_hex2bin,$<,$@)
$(LEVELS_BIN)/code002.dat: $(LEVELS_BIN)/code002.hex
$(call mb_hex2bin,$<,$@)
$(call mb_sdcc_hex2bin,$<,$@)
$(LEVELS_BIN)/code.001: $(LEVELS_BIN)/code001.dat
$(call mb_copy,$<,$@)