iigs-game-engine/src/Master.s

39 lines
1022 B
ArmAsm
Raw Normal View History

; IIgs Generic Tile Engine User Toolset
2022-04-23 17:48:13 +00:00
TYP $BA ; Tool set file
DSK GTETool
XPL
; Main toolbox interface and code
ASM Tool.s
SNA Main
; 64KB Tile Memory
ASM static\TileData.s
KND #$1001 ; Type and Attributes ($10=Static,$01=Data)
2022-04-23 17:48:13 +00:00
ALI BANK
SNA TDATA
; 64KB Sprite Plane Data
ASM static\SprData.s
KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data)
2022-04-23 17:48:13 +00:00
ALI BANK
SNA SDATA
2022-04-23 17:48:13 +00:00
; 64KB Sprite Mask Data
ASM static\SprMask.s
KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data)
2022-04-23 17:48:13 +00:00
ALI BANK
SNA SMASK
; 64KB Tile Store
ASM static\TileStore.s
KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data)
2022-04-23 17:48:13 +00:00
ALI BANK
SNA TSTORE