aboutsummaryrefslogtreecommitdiffstats
path: root/corewords.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-03-02 18:01:34 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-03-02 18:01:34 -0500
commit2ece0e4993c838f620e5c19dfa04a86d9d35df49 (patch)
treede8c4ad3b3772e7fdc44e564daeefedd4b2bc8fc /corewords.hpp
parentd175fa6a882805212cd489d6afbda9f54443bd7b (diff)
major compliance refactor; undo packed literals for now
Diffstat (limited to 'corewords.hpp')
-rw-r--r--corewords.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/corewords.hpp b/corewords.hpp
index 9546ac1..21a0951 100644
--- a/corewords.hpp
+++ b/corewords.hpp
@@ -29,7 +29,7 @@ class CoreWords
public:
constexpr static std::size_t WordCount = 32;
- constexpr static Cell Immediate = (1 << 6);
+ constexpr static Cell Immediate = (1 << 5);
constexpr static int Semicolon = 26;
@@ -43,7 +43,7 @@ private:
"+\0-\0m*\0_/\0_%\0"
"_@\0_!\0>r\0r>\0=\0"
"<\0&\0|\0^\0"
- "<<\0>>\0:\0'\0execute\0"
+ "<<\0>>\0:\0_'\0execute\0"
"exit\0;\0_jmp0\0_jmp\0"
"depth\0_rdepth\0_in\0";
};