Embedded Systems
ficl.txt
Associated article: Ficl: An Embeddable Extension Language Interpreter
Tags: Embedded Systems
Published source code accompanying the article by John Sadler in which he presents Ficl, short for "Forth-Inspired Command Language," an interpreter that has a system interface similar in spirit to Tcl, but specifically designed for embedded systems with minimal resources. Also see FICL105.ZIP.
Ficl: An Embeddable Extension Language Interpreter by John Sadler Example 1: hex 10000 constant leds 10002 constant switches 20000 constant adc 20002 constant dac Example 2: : !oreg ( value -- ) leds c! ; : @adc ( -- value ) adc c@ ; : !dac ( value -- ) dac c! ; : @ireg ( -- value ) switches c@ ; ...


