From 0df74eef439e8db2b35a1e8486a8a400b84b2858 Mon Sep 17 00:00:00 2001 From: Martin Haye Date: Sun, 1 Sep 2013 12:44:03 -0700 Subject: [PATCH] Made room for up to 10 textures. --- Platform/Apple/virtual/src/raycast/build.xml | 4 ++-- Platform/Apple/virtual/src/raycast/expand.s | 2 +- Platform/Apple/virtual/src/raycast/genExpand.py | 2 +- Platform/Apple/virtual/src/raycast/render.s | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Platform/Apple/virtual/src/raycast/build.xml b/Platform/Apple/virtual/src/raycast/build.xml index 952561d7..ea89232c 100644 --- a/Platform/Apple/virtual/src/raycast/build.xml +++ b/Platform/Apple/virtual/src/raycast/build.xml @@ -59,9 +59,9 @@ - + - + diff --git a/Platform/Apple/virtual/src/raycast/expand.s b/Platform/Apple/virtual/src/raycast/expand.s index d91e0056..3ea5dd44 100644 --- a/Platform/Apple/virtual/src/raycast/expand.s +++ b/Platform/Apple/virtual/src/raycast/expand.s @@ -1,7 +1,7 @@ .org $800 .pc02 pTex = $A -selectMip0 = $6003 +selectMip0 = $7003 selectMip1 = selectMip0+3 selectMip2 = selectMip1+3 selectMip3 = selectMip2+3 diff --git a/Platform/Apple/virtual/src/raycast/genExpand.py b/Platform/Apple/virtual/src/raycast/genExpand.py index d3f03e01..075b7446 100755 --- a/Platform/Apple/virtual/src/raycast/genExpand.py +++ b/Platform/Apple/virtual/src/raycast/genExpand.py @@ -23,7 +23,7 @@ outFile = open("expand.s", "w") outFile.write(" .org $800\n") outFile.write(" .pc02\n") outFile.write("pTex = $A\n") -outFile.write("selectMip0 = $6003\n") +outFile.write("selectMip0 = $7003\n") outFile.write("selectMip1 = selectMip0+3\n") outFile.write("selectMip2 = selectMip1+3\n") outFile.write("selectMip3 = selectMip2+3\n") diff --git a/Platform/Apple/virtual/src/raycast/render.s b/Platform/Apple/virtual/src/raycast/render.s index 3272f513..3fc581b0 100644 --- a/Platform/Apple/virtual/src/raycast/render.s +++ b/Platform/Apple/virtual/src/raycast/render.s @@ -1,5 +1,5 @@ - .org $6000 + .org $7000 codeBeg = * .pc02 ; Enable 65c02 ops @@ -82,8 +82,8 @@ screen = $2000 ;--------------------------------- ; The following are all in aux mem... expandVec = $800 -expandCode = $900 ; occupies $35 pages -textures = $3E00 ; in aux mem +expandCode = $900 ; size $2F8C +textures = $3900 tex0 = textures tex1 = tex0+TEX_SIZE tex2 = tex1+TEX_SIZE