mirror of
https://github.com/Pecusx/jataricart.git
synced 2026-05-21 06:39:37 +02:00
39 lines
718 B
Plaintext
39 lines
718 B
Plaintext
.define TITLE dta c'Mac65 1.02 DDT'
|
|
.define CARTSIZE dta c'>=128'
|
|
.define BANKS 0
|
|
|
|
.macro CUSTOM_CART_LAYOUT
|
|
org BankNum
|
|
dta b(0) ; $d500
|
|
dta b(1) ; Counter
|
|
;------------
|
|
org _SOURCE
|
|
ins "mac65.bin",+0*$1000+$0,$1000
|
|
ins "mac65.bin",+$3000+$0,$1000
|
|
;------------
|
|
org $2e2
|
|
dta a(MAIN_PROCESS)
|
|
;------------
|
|
org BankNum
|
|
dta b(3) ; d503
|
|
dta b(1) ; Counter
|
|
;------------
|
|
org _SOURCE
|
|
ins "mac65.bin",+1*$1000+$0,$1000
|
|
ins "mac65.bin",+$3000+$0,$1000
|
|
;------------
|
|
org $2e2
|
|
dta a(MAIN_PROCESS)
|
|
;------------
|
|
org BankNum
|
|
dta b(4) ; $d504
|
|
dta b(1) ; Counter
|
|
;------------
|
|
org _SOURCE
|
|
ins "mac65.bin",+2*$1000+$0,$1000
|
|
ins "mac65.bin",+$3000+$0,$1000
|
|
;------------
|
|
org $2e2
|
|
dta a(MAIN_PROCESS)
|
|
.endm
|