diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-12-31 14:50:46 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-12-31 14:50:46 -0500 |
commit | 2261914a6b291bf4073cddf30a862df3c3a341e9 (patch) | |
tree | 3b03cec84c391039b60ec83df037fcf3057ce260 /libalee/dictionary.hpp | |
parent | 22a89e994939824015a2ee23ac8a4d544a0882b6 (diff) |
distancepos constant
Diffstat (limited to 'libalee/dictionary.hpp')
-rw-r--r-- | libalee/dictionary.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libalee/dictionary.hpp b/libalee/dictionary.hpp index ad1ee02..78bc19d 100644 --- a/libalee/dictionary.hpp +++ b/libalee/dictionary.hpp @@ -73,8 +73,10 @@ public: /** "Immediate" marker bit for a word's definition. */ constexpr static Cell Immediate = (1 << 5); + + constexpr static Cell DistancePos = 6; /** Maximum "short" distance between two definitions. */ - constexpr static Cell MaxDistance = (1 << (sizeof(Cell) * 8 - 6)) - 1; + constexpr static Cell MaxDistance = (1 << (sizeof(Cell) * 8 - DistancePos)) - 1; /** Returns the value of the cell at the given address. */ virtual Cell read(Addr) const noexcept = 0; |