mitra42 / webForth

Forth for the web - implemented in JS and other web technologies
https://www.mitra.biz/forth/console.html
GNU Affero General Public License v3.0
27 stars 1 forks source link

VALUE - as in Forth2012 #88

Closed mitra42 closed 3 years ago

mitra42 commented 3 years ago

Forth2012 has VALUE instead of USER which fits in as follows

Type Initialized Definition Fetch Store
VALUE Y 11 VALUE bar bar 22 TO bar
CONSTANT Y 11 CONSTANT bar bar N/A
VARIABLE N VARIABLE bar bar @ 22 bar !
USER Y offset USER bar 11 bar ! bar @ 22 bar !

This is going to cause issues as move to multitasking, but USER has to be restructured then anyway

mitra42 commented 3 years ago

Design outline ...

mitra42 commented 3 years ago