aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/msp430/lib/forth-2012/core/value.frt
blob: 41a7e7043d3f988edcb53334bec757f93d00c707 (plain)
1
2
3
4
5
6
7
8
9
\ the value (in RAM)

: value ( n -- )
    (value)
    here , \ compile the RAM address 
    ['] @ ,
    ['] ! ,
    here ! 2 allot
;