From 3d9cb12f5f9d72824c86cacacbc264158a8830b0 Mon Sep 17 00:00:00 2001 From: crc Date: Tue, 26 Mar 2019 14:28:30 +0000 Subject: [PATCH] forgot the 96k option FossilOrigin-Name: c45554e83e8f2dac18484b6cf5ca21c131cf369f01e373d14a89b9fe08b4bbcb --- interfaces/image-functions.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/interfaces/image-functions.h b/interfaces/image-functions.h index 159ec22..ec402bb 100644 --- a/interfaces/image-functions.h +++ b/interfaces/image-functions.h @@ -75,6 +75,16 @@ #else #endif +#ifdef MEM96K +#undef IMAGE_SIZE +#undef STACK_DEPTH +#undef ADDRESSES +#define IMAGE_SIZE 18000 +#define STACK_DEPTH 128 +#define ADDRESSES 256 +#else +#endif + extern CELL sp, rp, ip; extern CELL data[STACK_DEPTH];