diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-25 13:39:04 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-25 13:39:04 -0500 |
commit | 4af14b8c3e2b8c0ef230158b91e8a890dc34e523 (patch) | |
tree | 994ee5655739c51c66a3986f4af490733769cf6c /corewords.hpp | |
parent | fc0d3ed9cfebd853db2a2ab26993a186a29180b1 (diff) |
reduce built-in word count
Diffstat (limited to 'corewords.hpp')
-rw-r--r-- | corewords.hpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/corewords.hpp b/corewords.hpp index 4eb9d42..fcb00e8 100644 --- a/corewords.hpp +++ b/corewords.hpp @@ -27,10 +27,9 @@ void user_sys(State&); class CoreWords { public: - constexpr static std::size_t WordCount = 35; + constexpr static std::size_t WordCount = 32; - constexpr static Cell Immediate = (1 << 5); - constexpr static Cell Compiletime = (1 << 6); + constexpr static Cell Immediate = (1 << 5); static int findi(const char *); static int findi(State&, Word); @@ -40,13 +39,13 @@ private: // Ends with '\0': regular word // Ends with '\1': compile-only word constexpr static char wordsarr[] = - "drop\0dup\0swap\0pick\0sys\0" + "_lit\0drop\0dup\0swap\0pick\0sys\0" "+\0-\0m*\0_/\0_%\0" "_@\0_!\0>r\0r>\0=\0" - "<\0allot\0&\0|\0^\0" + "<\0&\0|\0^\0" "<<\0>>\0:\0'\0execute\0" - "exit\0;\1here\0_lit\0literal\1" - "_jmp\0_jmp0\0depth\0_rdepth\0key\0"; + "exit\0;\1_jmp\0" + "_jmp0\0depth\0_rdepth\0key\0"; }; #endif // ALEEFORTH_COREWORDS_HPP |