From: Clyne Sullivan Date: Mon, 1 Jan 2024 15:16:16 +0000 (-0500) Subject: Merge branch 'native' of ssh://code.bitgloo.com:222/bitgloo/alee-forth into native X-Git-Url: https://code.bitgloo.com/?a=commitdiff_plain;h=e8c9f97f4fa9502b88c8c3a44c5d5f5f1c98d506;p=bitgloo%2Falee-forth.git Merge branch 'native' of ssh://code.bitgloo.com:222/bitgloo/alee-forth into native --- e8c9f97f4fa9502b88c8c3a44c5d5f5f1c98d506 diff --cc libalee/dictionary.hpp index 78bc19d,cfc56c4..d465e60 --- a/libalee/dictionary.hpp +++ b/libalee/dictionary.hpp @@@ -73,8 -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;