[OpenBIOS] [commit] r761 - trunk/openbios-devel/forth/bootstrap

repository service svn at openbios.org
Fri Apr 30 22:54:05 CEST 2010


Author: mcayland
Date: Fri Apr 30 22:54:03 2010
New Revision: 761
URL: http://tracker.coreboot.org/trac/openbios/changeset/761

Log:
Move the temporary compilation buffer into dictionary space. This prevent spurious dictionary overflow messages appearing due to 
setup-tmp-comp switching dictionaries to memory outside of the initial dictionary space.

Signed-off-by: Mark Cave-Ayland <mark.cave-ayland at siriusit.co.uk>

Modified:
   trunk/openbios-devel/forth/bootstrap/bootstrap.fs

Modified: trunk/openbios-devel/forth/bootstrap/bootstrap.fs
==============================================================================
--- trunk/openbios-devel/forth/bootstrap/bootstrap.fs	Mon Apr 26 19:07:49 2010	(r760)
+++ trunk/openbios-devel/forth/bootstrap/bootstrap.fs	Fri Apr 30 22:54:03 2010	(r761)
@@ -1542,7 +1542,7 @@
 \ 
 
 : init-tmp-comp
-  200 alloc-mem tmp-comp-buf !
+  here 200 allot tmp-comp-buf !
 ;
 
 \ the end



More information about the OpenBIOS mailing list