2
0
Fork 0

added levels code

This commit is contained in:
Willem 2019-01-02 00:29:48 +01:00
parent 4ba1c4a4f6
commit 41839649b3
3 changed files with 338 additions and 0 deletions

View file

@ -46,6 +46,10 @@ define mod_link_asm_dos
@echo === Link module asm dos.
$(SDCC) $(SDCC_FLAG_CPU) --no-std-crt0 --code-loc 0x0100 -o $(1) $(2)
endef
define mod_link_asm_1000
@echo === Link module asm 0x1000.
$(SDCC) $(SDCC_FLAG_CPU) --no-std-crt0 --code-loc 0x1000 -o $(1) $(2)
endef
define mod_link_asm_4000
@echo === Link module asm 0x4000.
$(SDCC) $(SDCC_FLAG_CPU) --no-std-crt0 --code-loc 0x4000 -o $(1) $(2)