mirror of
https://github.com/dschmenk/apple2pi.git
synced 2024-11-24 12:31:30 +00:00
39 lines
536 B
ArmAsm
Executable File
39 lines
536 B
ArmAsm
Executable File
.DEFINE EQU =
|
|
.DEFINE DB .BYTE
|
|
.DEFINE DW .WORD
|
|
.DEFINE PAGE .ALIGN 256
|
|
.DEFINE ORG .ORG
|
|
.CODE
|
|
.SCOPE
|
|
ROMSLOT EQU 0
|
|
.INCLUDE "slotrom.s"
|
|
.ENDSCOPE
|
|
.SCOPE
|
|
ROMSLOT EQU 1
|
|
.INCLUDE "slotrom.s"
|
|
.ENDSCOPE
|
|
.SCOPE
|
|
ROMSLOT EQU 2
|
|
.INCLUDE "slotrom.s"
|
|
.ENDSCOPE
|
|
.SCOPE
|
|
ROMSLOT EQU 3
|
|
.INCLUDE "slotrom.s"
|
|
.ENDSCOPE
|
|
.SCOPE
|
|
ROMSLOT EQU 4
|
|
.INCLUDE "slotrom.s"
|
|
.ENDSCOPE
|
|
.SCOPE
|
|
ROMSLOT EQU 5
|
|
.INCLUDE "slotrom.s"
|
|
.ENDSCOPE
|
|
.SCOPE
|
|
ROMSLOT EQU 6
|
|
.INCLUDE "slotrom.s"
|
|
.ENDSCOPE
|
|
.SCOPE
|
|
ROMSLOT EQU 7
|
|
.INCLUDE "slotrom.s"
|
|
.ENDSCOPE
|