j
: Next unread message k
: Previous unread message j a
: Jump to all threads
j l
: Jump to MailingList overview
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@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