From cd85aed449a1d85d2bbcfc85ecd2ddf970deb3df Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sun, 7 Apr 2019 11:40:33 +0100 Subject: [PATCH] msx1: put the top of process memory back right for swap We are using split udata so shouldn't account for udata there --- Kernel/platform-msx1/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/platform-msx1/config.h b/Kernel/platform-msx1/config.h index e9b9527f..29b7daaa 100644 --- a/Kernel/platform-msx1/config.h +++ b/Kernel/platform-msx1/config.h @@ -24,7 +24,7 @@ extern unsigned int swap_dev; #define SWAP_SIZE 0x61 /* 48.5K in blocks (prog + udata) */ #define SWAPBASE 0x0000 /* start at the base of user mem */ -#define SWAPTOP 0xC200 /* Swap out program */ +#define SWAPTOP 0xC000 /* Swap out program */ #define CONFIG_SPLIT_UDATA /* Adjacent addresses but different bank! */ #define UDATA_BLKS 1 /* One block of udata */ #define UDATA_SIZE 512 /* 512 bytes of udata */ -- 2.34.1