diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-20 19:00:30 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-20 19:00:30 -0500 |
commit | bc118ad31f2d74b5d5e9e3742e52fc441722c679 (patch) | |
tree | 233ca7ea9ad2b9ad65b1c45c132b3d5e2375e015 /core.fth | |
parent | 6ef7f7ce8548f6e6c60d3b444a087722f354a53f (diff) |
concise parser; >body, >in, source
Diffstat (limited to 'core.fth')
-rw-r--r-- | core.fth | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -31,12 +31,13 @@ : base 0 ; : _latest 1 cells ; +: imm _latest @ dup @ 1 5 << | swap ! ; : state 2 cells ; -: decimal 1 1+ base ! 1010 base ! ; +: postpone 1 3 cells ! ; imm +: _input 4 cells ; -: imm _latest @ dup @ 1 5 << | swap ! ; +: decimal 1 1+ base ! 1010 base ! ; -: postpone 1 3 cells ! ; imm : ['] ' postpone literal ; imm : [ 0 state ! ; imm : ] 1 state ! ; @@ -113,7 +114,11 @@ 2 cells + ['] _jmp over ! cell+ here swap ! ] ; +: >body cell+ @ ; : variable create 1 cells allot ; : constant create , does> ['] @ , postpone ; ; ( TODO fix compile-time does>... above should simply be "does> @ ;" ) + +: >in _input 80 chars + cell+ _input @ - 4 chars - ; +: source _input @ 6 chars + >in 3 chars - swap ; |