From: George H. <geo...@us...> - 2010-08-30 12:07:55
|
Update of /cvsroot/win32forth/win32forth/src/kernel In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv10016 Modified Files: Tag: V614XX 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.8.2.1 retrieving revision 1.8.2.2 diff -C2 -d -r1.8.2.1 -r1.8.2.2 *** meta-fkernel.f 26 Aug 2010 08:14:19 -0000 1.8.2.1 --- meta-fkernel.f 30 Aug 2010 12:07:47 -0000 1.8.2.2 *************** *** 46,58 **** 1256000 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 ! ! 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 --- 46,54 ---- 1256000 0x1000 naligned constant MINAPPMEM \ minimum size of kernel application dictionary 40960 0x1000 naligned constant MINCODEMEM \ minimum size of kernel code dictionary ! 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 |