From: pito <pi...@vo...> - 2010-09-19 18:04:22
|
Matthias, dict_appl_core.inc contains: .include "dict_core.inc" .include "words/estore.asm" .include "words/efetch.asm" .include "words/istore.asm" .include "words/istore_nrww.asm" .include "words/ifetch.asm" This seems to be critical words.. and dict_core.inc contains: ; this part of the dictionay has to fit into the nrww flash ; section together with the forth inner interpreter .include "words/int-on.asm" .include "words/int-off.asm" .include "words/int-restore.asm" .include "words/exit.asm" .include "words/execute.asm" .include "words/dobranch.asm" .include "words/docondbranch.asm" ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + lot of other words............... ............... Q: the above requirement "this part of the .." is valid for the whole content of dict_core.inc or it is valid only for the first ";;;;;;;;;;;;;;" so the first 7 words? All except the first 7 words is up to the user how it is defined? Q: could be that "+ lot of other words" replaced by the whole \words\*.asm for example (in an inteligent way of course)? The dict_appl.inc is then basically empty and the user can put there e.g. his new words.. P. |