From: George H. <geo...@us...> - 2010-08-30 12:07:09
|
Update of /cvsroot/win32forth/win32forth/src/kernel In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv9914 Modified Files: meta-fkernel.f Log Message: Fixed meta compiler size bug correctly Index: meta-fkernel.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/src/kernel/meta-fkernel.f,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** meta-fkernel.f 26 Aug 2010 08:12:17 -0000 1.10 --- meta-fkernel.f 30 Aug 2010 12:06:54 -0000 1.11 *************** *** 48,58 **** 1024000 0x1000 naligned constant MINSYSMEM \ minimum size of kernel system dictionary ! APP-SIZE MINAPPMEM < [IF] MINAPPMEM to APP-SIZE [THEN] ! CODE-SIZE MINCODEMEM < [IF] MINCODEMEM to CODE-SIZE [THEN] ! SYS-SIZE MINSYSMEM < [IF] MINSYSMEM to SYS-SIZE [THEN] ! ! APP-SIZE 0x1000 naligned TO IMAGE-ASIZE \ size of kernel application dictionary ! CODE-SIZE 0x1000 naligned TO IMAGE-CSIZE \ size of kernel data dictionary ! SYS-SIZE 0x1000 naligned TO IMAGE-SSIZE \ size of kernel system dictionary --- 48,54 ---- 1024000 0x1000 naligned constant MINSYSMEM \ minimum size of kernel system dictionary ! APP-SIZE MINAPPMEM max 0x1000 naligned TO IMAGE-ASIZE \ size of kernel application dictionary ! CODE-SIZE MINCODEMEM max 0x1000 naligned TO IMAGE-CSIZE \ size of kernel data dictionary ! SYS-SIZE MINSYSMEM max 0x1000 naligned TO IMAGE-SSIZE \ size of kernel system dictionary |