iigs-game-engine/src/Master.s

53 lines
1.4 KiB
ArmAsm
Raw Normal View History

; IIgs Generic Tile Engine User Toolset
2022-04-23 17:48:13 +00:00
TYP $BA ; Tool set file
2022-04-29 17:38:04 +00:00
DSK Tool160
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
2022-07-13 02:03:30 +00:00
; 64KB Rotation Data Tables
ASM RotData.s
KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data)
ALI BANK
SNA ROTDATA
2022-08-11 19:14:25 +00:00
; Additional code
ASM FastCopies.s
KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data)
ALI BANK
SNA FASTCPY