mirror of
https://github.com/lscharen/iigs-game-engine.git
synced 2024-11-26 07:49:17 +00:00
Work on fixing linker / OMF errors
This commit is contained in:
parent
e2710ace85
commit
9692277677
@ -1,6 +1,6 @@
|
|||||||
; IIgs Generic Tile Engine User Toolset
|
; IIgs Generic Tile Engine User Toolset
|
||||||
|
|
||||||
TYP $BA ; TOL file
|
TYP $BA ; Tool set file
|
||||||
DSK GTETool
|
DSK GTETool
|
||||||
XPL
|
XPL
|
||||||
|
|
||||||
@ -13,22 +13,26 @@
|
|||||||
|
|
||||||
ASM static\TileData.s
|
ASM static\TileData.s
|
||||||
KND #$1001 ; Type and Attributes ($10=Static,$01=Data)
|
KND #$1001 ; Type and Attributes ($10=Static,$01=Data)
|
||||||
|
ALI BANK
|
||||||
SNA TDATA
|
SNA TDATA
|
||||||
|
|
||||||
; 64KB Sprite Plane Data
|
; 64KB Sprite Plane Data
|
||||||
|
|
||||||
ASM static\SprData.s
|
ASM static\SprData.s
|
||||||
KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data)
|
KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data)
|
||||||
|
ALI BANK
|
||||||
SNA SDATA
|
SNA SDATA
|
||||||
|
|
||||||
;64KB Sprite Mask Data
|
; 64KB Sprite Mask Data
|
||||||
|
|
||||||
ASM static\SprMask.s
|
ASM static\SprMask.s
|
||||||
KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data)
|
KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data)
|
||||||
|
ALI BANK
|
||||||
SNA SMASK
|
SNA SMASK
|
||||||
|
|
||||||
; 64KB Tile Store
|
; 64KB Tile Store
|
||||||
|
|
||||||
ASM static\TileStore.s
|
ASM static\TileStore.s
|
||||||
KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data)
|
KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data)
|
||||||
|
ALI BANK
|
||||||
SNA TSTORE
|
SNA TSTORE
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
; sprite stamp pixel data
|
; sprite stamp pixel data
|
||||||
spritedata ENT
|
spritedata ENT
|
||||||
ds 65536
|
ds 65535
|
@ -1,3 +1,3 @@
|
|||||||
; sprite stamp masks
|
; sprite stamp masks
|
||||||
spritemask ENT
|
spritemask ENT
|
||||||
ds 65536
|
ds 65535
|
@ -1,3 +1,3 @@
|
|||||||
; Bank of memory that holds the 8x8 tile data
|
; Bank of memory that holds the 8x8 tile data
|
||||||
tiledata ENT
|
tiledata ENT
|
||||||
ds 65536
|
ds 65535
|
@ -1,3 +1,3 @@
|
|||||||
; Bank of memory that holds the core sprite and tile store data structures
|
; Bank of memory that holds the core sprite and tile store data structures
|
||||||
TileStore ENT
|
TileStore ENT
|
||||||
ds 65536
|
ds 65535
|
Loading…
Reference in New Issue
Block a user