diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-09 06:39:02 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-09 06:39:02 -0500 |
commit | 0810456e9c5c19a47511a682eeabc71008632a2c (patch) | |
tree | 9153fe7d3f42fde88491090b59aeb77519d270dc /libalee/corewords.cpp | |
parent | 513136558e55f8a843f8f326ccafe1503acf67e4 (diff) |
MaxDistance constant; some .cpp comments
Diffstat (limited to 'libalee/corewords.cpp')
-rw-r--r-- | libalee/corewords.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libalee/corewords.cpp b/libalee/corewords.cpp index 534f1da..661590f 100644 --- a/libalee/corewords.cpp +++ b/libalee/corewords.cpp @@ -154,11 +154,11 @@ execute: cell = state.pop(); dcell = cell - state.dict.latest(); - if (dcell > (1 << (sizeof(Cell) * 8 - 6)) - 1) { + if (dcell >= Dictionary::MaxDistance) { // Large distance to previous entry: store in dedicated cell. state.dict.write(static_cast<Addr>(cell) + sizeof(Cell), static_cast<Cell>(dcell)); - dcell = ((1 << (sizeof(Cell) * 8 - 6)) - 1); + dcell = Dictionary::MaxDistance; } state.dict.write(cell, (state.dict.read(cell) & 0x1F) | static_cast<Cell>(dcell << 6)); |