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

@ -12,10 +12,10 @@ $(LOADER_BIN):
$(call mb_mkdir,$(LOADER_BIN))
$(LOADER_BIN)/%.rel: $(LOADER_SRC)/%.asm | $(LOADER_BIN)
$(call mb_compile_asm,$@,$<)
$(call mb_sdcc_compile_asm,$@,$<)
$(LOADER_HEX): $(LOADER_RELS)
$(call mb_link_asm_8000,$(LOADER_HEX),$(LOADER_RELS))
$(call mb_sdcc_link_asm_8000,$(LOADER_HEX),$(LOADER_RELS))
$(LOADER_DAT): $(LOADER_HEX)
$(call mb_hex2bin,$(LOADER_HEX),$(LOADER_DAT))
$(call mb_sdcc_hex2bin,$(LOADER_HEX),$(LOADER_DAT))