From: Alan Cox Date: Thu, 7 Dec 2017 15:10:46 +0000 (+0000) Subject: v65c816: fix incorrect define X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=3477cf4b64b7ca556d0cceadd19afaf74a0576eb;p=FUZIX.git v65c816: fix incorrect define It's right in the asm but the C one is used in swap which we don't yet do.. --- diff --git a/Kernel/platform-v65c816/config.h b/Kernel/platform-v65c816/config.h index 36b2281f..7c728dd8 100644 --- a/Kernel/platform-v65c816/config.h +++ b/Kernel/platform-v65c816/config.h @@ -23,7 +23,7 @@ #define MAX_MAPS 7 #define MAP_SIZE 0xFC00 /* 0-FBFF */ -#define STACK_BANKOFF 0xF5 /* F600-FCFF */ +#define STACK_BANKOFF 0xF0 /* F000-FBFF */ #define TICKSPERSEC 100 /* Ticks per second */ #define MAPBASE 0x0000 /* We map from 0 */