2021-03-21 21:59:54 -05:00
|
|
|
; IIgs Game Engine
|
2021-07-08 07:46:35 -05:00
|
|
|
|
2021-08-26 16:45:23 -05:00
|
|
|
TYP $B3 ; S16 file
|
2021-07-08 07:46:35 -05:00
|
|
|
DSK GTETestApp
|
2021-03-21 21:59:54 -05:00
|
|
|
XPL
|
|
|
|
|
|
|
|
; Segment #1 -- Main execution block
|
2020-08-19 00:35:30 -05:00
|
|
|
|
|
|
|
ASM App.Main.s
|
2021-08-26 16:45:23 -05: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)
|
2021-07-30 08:01:16 -05:00
|
|
|
SNA Main
|
2021-07-08 07:46:35 -05:00
|
|
|
|
2021-08-26 08:52:43 -05:00
|
|
|
; Segment #2 -- Core GTE Code
|
|
|
|
|
2021-08-26 16:45:23 -05:00
|
|
|
ASM ..\..\src\Core.s
|
2021-08-26 08:52:43 -05:00
|
|
|
SNA Core
|
|
|
|
|
|
|
|
; Segment #3 -- 64KB Tile Memory
|
2021-07-08 07:46:35 -05:00
|
|
|
|
2021-08-26 16:45:23 -05:00
|
|
|
ASM gen\App.TileSet.s
|
2021-07-30 08:01:16 -05:00
|
|
|
DS 0
|
2021-08-26 16:45:23 -05:00
|
|
|
KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data)
|
2021-07-30 08:01:16 -05:00
|
|
|
; ALI BANK
|
|
|
|
SNA Tiles
|
|
|
|
|
2021-08-26 08:52:43 -05:00
|
|
|
; Segment #4 -- Rotation table data
|
2021-07-30 08:01:16 -05:00
|
|
|
|
2021-08-26 16:45:23 -05:00
|
|
|
ASM ..\..\src\RotData.s
|
2021-07-30 08:01:16 -05:00
|
|
|
DS 0
|
2021-08-26 16:45:23 -05:00
|
|
|
KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data)
|
2021-08-05 08:20:38 -05:00
|
|
|
ALI BANK
|
2021-07-30 08:01:16 -05:00
|
|
|
SNA RotData
|
2021-08-14 20:58:37 -05:00
|
|
|
|
2021-08-26 16:45:23 -05:00
|
|
|
|