Hello Michael,

On 02/25/2014 06:53 PM, Michael Picco wrote:
> Thanks to Craig Lindley's write-up, I've now gotten 5.2 working on a Uno
> without the hair-pulling of previous versions.
> 
> That said, I attempted to install MARKER, but was told 'set-current' was
> missing ... how does one get that installed?

set-current lives in core/words/set-current.asm.
One way is to add the line
  .include "words/set-current.asm"
to the file dict_appl.inc and reassemble amforth. The other
way (which I prefer) ist to add instead the line
  .include "dict_wl.inc"
which will include the complete word set for "word lists".
In detail
  $ cat core/dict_wl.inc 
  .include "words/set-current.asm"
  .include "words/previous.asm"
  .include "words/definitions.asm"
  .include "words/wordlist.asm"
  .include "words/only.asm"
  .include "words/forth.asm"
  .include "words/forth-wordlist.asm"
  .include "words/also.asm"
  .include "words/set-order.asm"
  .include "words/order.asm"
Again, reassemble amforth and load it.


Hope this helps,
73, Erich



------------------------------------------------------------------------------
Flow-based real-time traffic analytics software. Cisco certified tool.
Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer
Customize your own dashboards, set traffic alerts and generate reports.
Network behavioral analysis & security monitoring. All-in-one tool.
http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.clktrk
_______________________________________________
Amforth-devel mailing list for http://amforth.sf.net/
Amforth-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/amforth-devel

Reply via email to