diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-24 19:58:11 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-24 19:58:11 -0500 |
commit | 649785d46603182132209b64791f6c996497110e (patch) | |
tree | d8df15aca9e95fa75ab59772feeee7a8b69c2897 /source/core.hpp | |
parent | 6e6b6841ec509549dcb5ed621342cbf21ae1ec94 (diff) |
add text processing words
Diffstat (limited to 'source/core.hpp')
-rw-r--r-- | source/core.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/core.hpp b/source/core.hpp index d85cccc..914c39b 100644 --- a/source/core.hpp +++ b/source/core.hpp @@ -44,8 +44,8 @@ int key(); /** Gets the next key available from the source buffer. */ Cell *comma(Cell n); /** Stores `n` to HERE++, returns `n`'s storage. */ Addr aligned(Addr addr); /** Aligns the given address and returns it. */ -void align(); /** Aligns HERE to the next Cell boundary. */ -void word(); /** Gets word from source buffer, stores and allots from HERE. */ +void align(); /** Aligns HERE to the next Cell boundary. */ +void wordword(); /** Definition of WORD. */ void colon(); /** Begins definition of a new word. */ void semic(); /** Ends the current word definition which becomes new LATEST. */ void tick(); /** Gets the execution token for the source buffer's next word. */ |