iigs-game-engine/src/App.s

86 lines
936 B
ArmAsm
Raw Normal View History

2021-03-22 02:59:54 +00:00
; IIgs Game Engine
2021-03-22 02:59:54 +00:00
TYP $B3 ; S16 file
DSK GTETestApp
2021-03-22 02:59:54 +00:00
XPL
; Segment #1 -- Main execution block
ASM App.Main.s
2021-07-30 13:01:16 +00:00
DS 0 ; Number of bytes of 0's to add at the end of the Segment
KND #$1100 ; Type and Attributes ($11=Static+Bank Relative,$00=Code)
ALI None ; Boundary Alignment (None)
SNA Main
; Segment #2 -- 64KB Tile Memory
ASM App.Tile.s
2021-07-30 13:01:16 +00:00
DS 0
KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data)
; ALI BANK
SNA Tiles
;Segment #3 -- Rotation table data
ASM RotData.s
DS 0
KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data)
; ALI BANK
SNA RotData
2021-03-22 02:59:54 +00:00