mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
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:
@@ -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
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user