From 05689e2720c69a66b6964a74f90dca2ece5ac30e Mon Sep 17 00:00:00 2001 From: David Schmenk Date: Mon, 15 Jan 2018 19:57:42 -0800 Subject: [PATCH] Tweaking the buffer sizes for 64K machines --- src/toolsrc/codegen.pla | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/toolsrc/codegen.pla b/src/toolsrc/codegen.pla index 0f5e7e3..cc43eb5 100644 --- a/src/toolsrc/codegen.pla +++ b/src/toolsrc/codegen.pla @@ -481,10 +481,10 @@ def init_idglobal#0 fixup_num = FIXUPNUM globalbufsz = IDGLOBALSZ localbufsz = IDLOCALSZ - if isult(heapavail, $4000) + if isult(heapavail, $8000) tag_num = TAGNUM/2 fixup_num = FIXUPNUM/2 - globalbufsz = IDGLOBALSZ/4 + globalbufsz = IDGLOBALSZ/2 localbufsz = IDLOCALSZ/2 fin tag_addr = heapalloc(tag_num*2)