mirror of
https://github.com/nineties/planckforth
synced 2025-01-14 08:01:27 +01:00
Fix comment
This commit is contained in:
parent
e19d8b780b
commit
72766e46c5
1 changed files with 3 additions and 0 deletions
|
@ -54,7 +54,10 @@ l!
|
||||||
\ '|' ( a b -- c ) c = (a | b)
|
\ '|' ( a b -- c ) c = (a | b)
|
||||||
\ '^' ( a b -- c ) c = (a ^ b)
|
\ '^' ( a b -- c ) c = (a ^ b)
|
||||||
\ '<' ( a b -- c ) c = (a < b)
|
\ '<' ( a b -- c ) c = (a < b)
|
||||||
|
\ 'u' ( a b -- c ) c = (a unsigned< b)
|
||||||
\ '=' ( a b -- c ) c = (a == b)
|
\ '=' ( a b -- c ) c = (a == b)
|
||||||
|
\ 'v' ( -- a-addr u ) argv and argc
|
||||||
|
\ 'V' ( -- c-addr ) Version text
|
||||||
|
|
||||||
\ The 1st stage interpreter repeats execution of k, f and x.
|
\ The 1st stage interpreter repeats execution of k, f and x.
|
||||||
\ There following line is an example program of planckforth
|
\ There following line is an example program of planckforth
|
||||||
|
|
Loading…
Reference in a new issue