aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libalee/dictionary.hpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/libalee/dictionary.hpp b/libalee/dictionary.hpp
index cfc56c4..d465e60 100644
--- a/libalee/dictionary.hpp
+++ b/libalee/dictionary.hpp
@@ -73,10 +73,9 @@ public:
/** "Immediate" marker bit for a word's definition. */
constexpr static Cell Immediate = (1 << 5);
- /** TODO */
- constexpr static Cell Native = (1 << 6);
- /** TODO */
- constexpr static Cell DistancePos = 7;
+
+ constexpr static Cell DistancePos = 6;
+
/** Maximum "short" distance between two definitions. */
constexpr static Cell MaxDistance = (1 << (sizeof(Cell) * 8 - DistancePos)) - 1;