From 96922776776d64afb2ec39ab41b44dd888050c17 Mon Sep 17 00:00:00 2001 From: Lucas Scharenbroich Date: Sat, 23 Apr 2022 12:48:13 -0500 Subject: [PATCH] Work on fixing linker / OMF errors --- src/Master.s | 8 ++++++-- src/static/SprData.s | 2 +- src/static/SprMask.s | 2 +- src/static/TileData.s | 2 +- src/static/TileStore.s | 2 +- 5 files changed, 10 insertions(+), 6 deletions(-) diff --git a/src/Master.s b/src/Master.s index 223034c..175f3a7 100644 --- a/src/Master.s +++ b/src/Master.s @@ -1,6 +1,6 @@ ; IIgs Generic Tile Engine User Toolset - TYP $BA ; TOL file + TYP $BA ; Tool set file DSK GTETool XPL @@ -13,22 +13,26 @@ ASM static\TileData.s KND #$1001 ; Type and Attributes ($10=Static,$01=Data) + ALI BANK SNA TDATA ; 64KB Sprite Plane Data ASM static\SprData.s KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data) + ALI BANK SNA SDATA -;64KB Sprite Mask Data +; 64KB Sprite Mask Data ASM static\SprMask.s KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data) + ALI BANK SNA SMASK ; 64KB Tile Store ASM static\TileStore.s KND #$1001 ; Type and Attributes ($11=Static+Bank Relative,$01=Data) + ALI BANK SNA TSTORE diff --git a/src/static/SprData.s b/src/static/SprData.s index 0c3b85e..fa143cf 100644 --- a/src/static/SprData.s +++ b/src/static/SprData.s @@ -1,3 +1,3 @@ ; sprite stamp pixel data spritedata ENT - ds 65536 \ No newline at end of file + ds 65535 \ No newline at end of file diff --git a/src/static/SprMask.s b/src/static/SprMask.s index 13de529..c444d27 100644 --- a/src/static/SprMask.s +++ b/src/static/SprMask.s @@ -1,3 +1,3 @@ ; sprite stamp masks spritemask ENT - ds 65536 \ No newline at end of file + ds 65535 \ No newline at end of file diff --git a/src/static/TileData.s b/src/static/TileData.s index 233da6c..596afce 100644 --- a/src/static/TileData.s +++ b/src/static/TileData.s @@ -1,3 +1,3 @@ ; Bank of memory that holds the 8x8 tile data tiledata ENT - ds 65536 \ No newline at end of file + ds 65535 \ No newline at end of file diff --git a/src/static/TileStore.s b/src/static/TileStore.s index 101700f..b768a45 100644 --- a/src/static/TileStore.s +++ b/src/static/TileStore.s @@ -1,3 +1,3 @@ ; Bank of memory that holds the core sprite and tile store data structures TileStore ENT - ds 65536 \ No newline at end of file + ds 65535 \ No newline at end of file