added levels code
This commit is contained in:
parent
4ba1c4a4f6
commit
41839649b3
3 changed files with 338 additions and 0 deletions
4
Makefile
4
Makefile
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue