mirror of
https://github.com/nineties/planckforth
synced 2024-12-26 21:58:42 +01:00
instructions
This commit is contained in:
parent
406b9cea17
commit
7c37e01321
1 changed files with 8 additions and 9 deletions
17
bootstrap.fs
17
bootstrap.fs
|
@ -2358,14 +2358,14 @@ need-defined (read)
|
||||||
word throw included
|
word throw included
|
||||||
;
|
;
|
||||||
|
|
||||||
( === Instructions === )
|
( === Primitive Instructions === )
|
||||||
|
|
||||||
: DOCOL-INSN docol ;
|
: insn:docol docol ;
|
||||||
: EXIT-INSN ['] e ;
|
: insn:exit ['] e ;
|
||||||
: LIT-INSN ['] lit ;
|
: insn:lit ['] lit ;
|
||||||
: LITSTRING-INSN ['] litstring ;
|
: insn:litstring ['] litstring ;
|
||||||
: BRANCH-INSN ['] branch ;
|
: insn:branch ['] branch ;
|
||||||
: 0BRANCH-INSN ['] 0branch ;
|
: insn:0branch ['] 0branch ;
|
||||||
|
|
||||||
( === Remove Unnecessary Words === )
|
( === Remove Unnecessary Words === )
|
||||||
|
|
||||||
|
@ -2394,8 +2394,7 @@ need-defined (read)
|
||||||
\ rebuilt dictionary
|
\ rebuilt dictionary
|
||||||
:noname
|
:noname
|
||||||
update-dictionary
|
update-dictionary
|
||||||
DOCOL-INSN EXIT-INSN LIT-INSN LITSTRING-INSN
|
insn:docol insn:exit insn:lit insn:litstring insn:branch insn:0branch
|
||||||
BRANCH-INSN 0BRANCH-INSN
|
|
||||||
|
|
||||||
words id. name>string name>link
|
words id. name>string name>link
|
||||||
include included
|
include included
|
||||||
|
|
Loading…
Reference in a new issue