From 0a11213eae9059d296ec2e3c4487bbad89d28073 Mon Sep 17 00:00:00 2001 From: Jakub Husak Date: Fri, 3 Feb 2023 12:57:58 +0100 Subject: [PATCH] added missing files --- .../Example_MissileCommand/macroflashname.asx | 5 +++ .../M091_OSSBasicXL103/macroflashname.asx | 40 +++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 various_flashers/Example_MissileCommand/macroflashname.asx create mode 100644 various_flashers/M091_OSSBasicXL103/macroflashname.asx diff --git a/various_flashers/Example_MissileCommand/macroflashname.asx b/various_flashers/Example_MissileCommand/macroflashname.asx new file mode 100644 index 0000000..9a40290 --- /dev/null +++ b/various_flashers/Example_MissileCommand/macroflashname.asx @@ -0,0 +1,5 @@ +.define TITLE dta c'Missile Command' +.define CARTSIZE dta c'>=128' +.define BANKS 1 +.define BANKS_FILE ins "missile.bin",+:1*8192,8192 + diff --git a/various_flashers/M091_OSSBasicXL103/macroflashname.asx b/various_flashers/M091_OSSBasicXL103/macroflashname.asx new file mode 100644 index 0000000..7e879fe --- /dev/null +++ b/various_flashers/M091_OSSBasicXL103/macroflashname.asx @@ -0,0 +1,40 @@ +.define TITLE dta c'OSS BasicXL 1.03' +.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 "OSSBasicXL103.rom",+$1000,$1000 + ins "OSSBasicXL103.rom",+$0000,$1000 +;------------ + org $2e2 + dta a(MAIN_PROCESS) +;------------ + org BankNum + dta b(1) ; d501 + dta b(1) ; Counter +;------------ + org _SOURCE + ins "OSSBasicXL103.rom",+$3000,$1000 + ins "OSSBasicXL103.rom",+$0000,$1000 +;------------ + org $2e2 + dta a(MAIN_PROCESS) +;------------ + org BankNum + dta b(9) ; $d509 + dta b(1) ; Counter +;------------ + org _SOURCE + ins "OSSBasicXL103.rom",+$2000,$1000 + ins "OSSBasicXL103.rom",+$0000,$1000 +;------------ + org $2e2 + dta a(MAIN_PROCESS) +;------------ +.endm