From: Dirk B. <db...@us...> - 2006-05-27 08:21:57
|
Update of /cvsroot/win32forth/win32forth/src/kernel In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv25301/src/kernel Modified Files: meta-fkernel.f Log Message: Changed the default application size to 1024000 bytes (SciEdit need's it). Index: meta-fkernel.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/src/kernel/meta-fkernel.f,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** meta-fkernel.f 14 Jul 2005 20:32:03 -0000 1.4 --- meta-fkernel.f 27 May 2006 08:21:54 -0000 1.5 *************** *** 48,54 **** SYS-SIZE 0x1000 naligned TO IMAGE-SSIZE \ size of kernel system dictionary ! 512000 0x1000 naligned constant MINAPPMEM \ minimum size of kernel application dictionary ! 40960 0x1000 naligned constant MINCODEMEM \ minimum size of kernel code dictionary ! 512000 0x1000 naligned constant MINSYSMEM \ minimum size of kernel system dictionary : PROMPT-SIZE ( -<"SETSIZE">- ) \ if SETSIZE follows on commandline --- 48,54 ---- SYS-SIZE 0x1000 naligned TO IMAGE-SSIZE \ size of kernel system dictionary ! 1024000 0x1000 naligned constant MINAPPMEM \ minimum size of kernel application dictionary ! 40960 0x1000 naligned constant MINCODEMEM \ minimum size of kernel code dictionary ! 512000 0x1000 naligned constant MINSYSMEM \ minimum size of kernel system dictionary : PROMPT-SIZE ( -<"SETSIZE">- ) \ if SETSIZE follows on commandline *************** *** 87,91 **** CR .( NEXT macros: ) KERN-NEXT COUNT TYPE CR .( Version from: ) KERN-VER COUNT TYPE ! CR .( Version: ) #version# ((version)) type .( Build: ) #build# . CR .( Build Image: ) KERN-NAME COUNT TYPE --- 87,91 ---- CR .( NEXT macros: ) KERN-NEXT COUNT TYPE CR .( Version from: ) KERN-VER COUNT TYPE ! CR .( Version: ) #version# ((version)) type .( Build: ) #build# . CR .( Build Image: ) KERN-NAME COUNT TYPE |