| ' maxaligned Alias cfaligned ( addr1 -- addr2 ) \ gforth |
' maxaligned Alias cfaligned ( addr1 -- addr2 ) \ gforth |
| |
|
| : chars ( n1 -- n2 ) \ core |
: chars ( n1 -- n2 ) \ core |
| |
\G @i{n2} is the number of address units corresponding to @i{n1} chars."" |
| ; immediate |
; immediate |
| |
|
| |
|
| \ on off 23feb93py |
\ on off 23feb93py |
| |
|
| \ on is used by docol: |
\ on is used by docol: |
| : on ( addr -- ) \ gforth |
: on ( a-addr -- ) \ gforth |
| |
\G Set the (value of the) variable at @i{a-addr} to @code{true}. |
| true swap ! ; |
true swap ! ; |
| : off ( addr -- ) \ gforth |
: off ( a-addr -- ) \ gforth |
| |
\G Set the (value of the) variable at @i{a-addr} to @code{false}. |
| false swap ! ; |
false swap ! ; |
| |
|
| \ dabs roll 17may93jaw |
\ dabs roll 17may93jaw |