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 @@ $(INIT_BIN):
$(call mb_mkdir,$(INIT_BIN))
$(INIT_BIN)/%.rel: $(INIT_SRC)/%.asm | $(INIT_BIN)
$(call mb_compile_asm,$@,$<)
$(call mb_sdcc_compile_asm,$@,$<)
$(INIT_HEX): $(INIT_RELS)
$(call mb_link_asm_dos,$(INIT_HEX),$(INIT_RELS))
$(call mb_sdcc_link_asm_dos,$(INIT_HEX),$(INIT_RELS))
$(INIT_COM): $(INIT_HEX)
$(call mb_hex2bin,$(INIT_HEX),$(INIT_COM))
$(call mb_sdcc_hex2bin,$(INIT_HEX),$(INIT_COM))