Increase Forth memory for FCode tables

git-svn-id: svn://coreboot.org/openbios/openbios-devel@451 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
Blue Swirl
2009-02-12 19:39:47 +00:00
parent a72df592da
commit a837cf70f8
2 changed files with 3 additions and 2 deletions

View File

@@ -12,7 +12,8 @@ BASE_ADDR = 0xffd00000;
/* 16KB stack */ /* 16KB stack */
STACK_SIZE = 16384; 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; IOMEM_SIZE = 256 * 1024 + 768 * 1024;
SECTIONS SECTIONS

View File

@@ -20,7 +20,7 @@
#include "boot.h" #include "boot.h"
#include "video_subr.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 */ #define DICTIONARY_SIZE (256*1024) /* 256K for the dictionary */
static ucell *memory; static ucell *memory;