mikaelpatel / Arduino-Shell

RPN Postscript/Forth Command Shell for Arduino
19 stars 5 forks source link

Enhance: Add character access functions #24

Closed mikaelpatel closed 8 years ago

mikaelpatel commented 8 years ago

Forth functions "c@", "<c@" and "c!" should be part of the instruction set. This may require reimplementing "@" and "!" to use memory addresses instead of shell memory space only (variables/stack index). The alternative is to create a small heap (a traditional dictionary with HERE and ALLOT) within the Shell object (as variables/stack).