[OpenBIOS] Update

Programmingkid programmingkidx at gmail.com
Sat Apr 3 00:35:42 CEST 2010


Here is a better version of '{' with another word added.


: currentWordName ( -- addr len )
currentWordAddr @
currentWordLen @
;


: {	
	copyWordName
	begin
	parse-word dup 0>
	while
		2dup drop " }" comp  0=
		if exit then
		2dup drop " ;" comp 0=
		if false useTopStackValue !
		else currentWordAddr @ currentWordLen @ loadLocalVariable 
		then
	repeat
			
	postpone currentWordName
; immediate	




More information about the OpenBIOS mailing list