From 8aa8586b03568d3a3d6eba39269a1b79510bc835 Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Tue, 6 Oct 2020 08:02:23 -0400 Subject: - Made the stack pointer 64 bit, rather than 16 bit. This is to allow for making the stack bigger for anything that needs to change the size of it. - Made the SuB Suite set the stack pointer to the end of the usable RAM, and allow for changing the stack size. In this case, the size of the stack is currently set to 192K, with the end of the heap being just below the stack. --- test/load-store.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/load-store.s') diff --git a/test/load-store.s b/test/load-store.s index 60a5a8f..abb7e74 100644 --- a/test/load-store.s +++ b/test/load-store.s @@ -2,7 +2,7 @@ reset: cps - ldx.w #$FFFF + ldx.d #$2FFFF txs @clear: and #0 -- cgit v1.2.3-13-gbd6f