2
Fork 0

Updated msxbuild sdcc function order.

This commit is contained in:
Willem Cazander 2024-06-30 00:17:28 +02:00
parent 4cc1cfabb7
commit f3f1ba7405
9 changed files with 26 additions and 26 deletions

View file

@ -12,10 +12,10 @@ $(INIT_BIN):
$(call mb_mkdir,$(INIT_BIN))
$(INIT_BIN)/%.rel: $(INIT_SRC)/%.asm | $(INIT_BIN)
$(call mb_sdcc_compile_asm,$@,$<)
$(call mb_sdcc_compile_asm,$<,$@)
$(INIT_HEX): $(INIT_RELS)
$(call mb_sdcc_link_asm_dos,$(INIT_HEX),$(INIT_RELS))
$(call mb_sdcc_link_asm_dos,$<,$@)
$(INIT_COM): $(INIT_HEX)
$(call mb_sdcc_hex2bin,$(INIT_HEX),$(INIT_COM))
$(call mb_sdcc_hex2bin,$<,$@)