From c5db61d59fd75b786bd3e5a57a163d37df20a8b9 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sun, 26 Feb 2023 19:31:00 -0500 Subject: packed literals; faster execution --- corewords.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'corewords.hpp') diff --git a/corewords.hpp b/corewords.hpp index 020694f..56f7703 100644 --- a/corewords.hpp +++ b/corewords.hpp @@ -29,22 +29,22 @@ class CoreWords public: constexpr static std::size_t WordCount = 32; - constexpr static Cell Immediate = (1 << 5); + constexpr static Cell Immediate = (1 << 6); + + constexpr static int Semicolon = 26; static int findi(const char *); static int findi(State&, Word); static void run(unsigned int, State&); private: - // Ends with '\0': regular word - // Ends with '\1': compile-only word constexpr static char wordsarr[] = "_lit\0drop\0dup\0swap\0pick\0sys\0" "+\0-\0m*\0_/\0_%\0" "_@\0_!\0>r\0r>\0=\0" "<\0&\0|\0^\0" "<<\0>>\0:\0'\0execute\0" - "exit\0;\1_jmp0\0_jmp\0" + "exit\0;\0_jmp0\0_jmp\0" "depth\0_rdepth\0key\0"; }; -- cgit v1.2.3