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
2023-05-09 15:16:58 +00:00
XPL
; Main toolbox interface and code
ASM Tool.s
SNA Main
; 64KB Tile Memory
ASM static/TileData.s
2023-05-09 15:16:58 +00:00
KND #$1101 ; 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
2023-05-09 15:16:58 +00:00
KND #$1101 ; 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
2023-05-09 15:16:58 +00:00
KND #$1101 ; 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
2023-05-09 15:16:58 +00:00
KND #$1101 ; 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
2023-05-09 15:16:58 +00:00
KND #$1101 ; Type and Attributes ($11=Static+Bank Relative,$01=Data)
2022-07-13 02:03:30 +00:00
ALI BANK
SNA ROTDATA
2022-08-11 19:14:25 +00:00
; Additional code
2023-03-14 14:23:01 +00:00
; ASM FastCopies.s
2023-05-09 15:16:58 +00:00
; KND #$1101 ; Type and Attributes ($11=Static+Bank Relative,$01=Data)
2023-03-14 14:23:01 +00:00
; ALI BANK
; SNA FASTCPY