[OpenBIOS] r451 - openbios-devel/arch/sparc32

svn at openbios.org svn at openbios.org
Thu Feb 12 20:39:47 CET 2009


Author: blueswirl
Date: 2009-02-12 20:39:47 +0100 (Thu, 12 Feb 2009)
New Revision: 451

Modified:
   openbios-devel/arch/sparc32/ldscript
   openbios-devel/arch/sparc32/openbios.c
Log:
Increase Forth memory for FCode tables

Modified: openbios-devel/arch/sparc32/ldscript
===================================================================
--- openbios-devel/arch/sparc32/ldscript	2009-02-08 15:45:15 UTC (rev 450)
+++ openbios-devel/arch/sparc32/ldscript	2009-02-12 19:39:47 UTC (rev 451)
@@ -12,7 +12,8 @@
 
 /* 16KB stack */
 STACK_SIZE = 16384;
-VMEM_SIZE = (256 + 256 + 16) * 1024;
+/* 256k general alloc + 256k Forth dictionary + 128k Forth memory */
+VMEM_SIZE = (256 + 256 + 128) * 1024;
 IOMEM_SIZE = 256 * 1024 + 768 * 1024;
 
 SECTIONS

Modified: openbios-devel/arch/sparc32/openbios.c
===================================================================
--- openbios-devel/arch/sparc32/openbios.c	2009-02-08 15:45:15 UTC (rev 450)
+++ openbios-devel/arch/sparc32/openbios.c	2009-02-12 19:39:47 UTC (rev 451)
@@ -20,7 +20,7 @@
 #include "boot.h"
 #include "video_subr.h"
 
-#define MEMORY_SIZE     (16*1024)       /* 16K ram for hosted system */
+#define MEMORY_SIZE     (128*1024)       /* 16K ram for hosted system */
 #define DICTIONARY_SIZE (256*1024)      /* 256K for the dictionary   */
 
 static ucell *memory;




More information about the OpenBIOS mailing list