diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-17 17:15:04 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-17 17:15:04 -0500 |
commit | 22a89e994939824015a2ee23ac8a4d544a0882b6 (patch) | |
tree | aba0c6500a9d389d2b47dc39b99e316a2d8fec06 /libalee/corewords.hpp | |
parent | 636b4bbc1d0dfe0d6df6fe3a6ea243806d39f44a (diff) |
corewords get their own functions
Diffstat (limited to 'libalee/corewords.hpp')
-rw-r--r-- | libalee/corewords.hpp | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/libalee/corewords.hpp b/libalee/corewords.hpp index 30d0a42..959d2e8 100644 --- a/libalee/corewords.hpp +++ b/libalee/corewords.hpp @@ -113,6 +113,44 @@ private: return -1; } + + static void word_lit(State&); + static void word_drop(State&); + static void word_dup(State&); + static void word_swap(State&); + static void word_pick(State&); + static void word_sys(State&); + static void word_add(State&); + static void word_sub(State&); + static void word_mul(State&); + static void word_div(State&); + static void word_mod(State&); + static void word_peek(State&); + static void word_poke(State&); + static void word_rpush(State&); + static void word_rpop(State&); + static void word_eq(State&); + static void word_lt(State&); + static void word_and(State&); + static void word_or(State&); + static void word_xor(State&); + static void word_shl(State&); + static void word_shr(State&); + static void word_colon(State&); + static void word_tick(State&); + static void word_execute(State&); + static void word_exit(State&); + static void word_semic(State&); + static void word_jmp0(State&); + static void word_jmp(State&); + static void word_depth(State&); + static void word_rdepth(State&); + static void word_in(State&); + static void word_ev(State&); + static void word_find(State&); + static void word_uma(State&); + static void word_ult(State&); + static void word_ummod(State&); }; #endif // ALEEFORTH_COREWORDS_HPP |