diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-17 21:22:37 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-17 21:22:37 -0500 |
commit | a3fca07d87a2d057657af9bb79de9f595e4b1a10 (patch) | |
tree | 672aa7da9b5fd8163cde2815ade031e9b5081027 /libalee | |
parent | e4f1fba4e8cc3991a6b6f40570c096c01f7c302d (diff) |
fix aligned and doublecell ops
Diffstat (limited to 'libalee')
-rw-r--r-- | libalee/corewords.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libalee/corewords.cpp b/libalee/corewords.cpp index 8ff7ac6..292e3cf 100644 --- a/libalee/corewords.cpp +++ b/libalee/corewords.cpp @@ -147,17 +147,17 @@ void CoreWords::word_sub(State& state) { } void CoreWords::word_mul(State& state) { // ( n n -- d ) auto cell = state.pop(); - auto dcell = state.pop() * cell; + auto dcell = (DoubleCell)state.pop() * cell; pushd(state, dcell); } void CoreWords::word_div(State& state) { // ( d n -- n ) auto cell = state.pop(); - auto dcell = popd(state); + auto dcell = (DoubleCell)popd(state); state.push(static_cast<Cell>(dcell / cell)); } void CoreWords::word_mod(State& state) { // ( d n -- n ) auto cell = state.pop(); - auto dcell = popd(state); + auto dcell = (DoubleCell)popd(state); state.push(static_cast<Cell>(dcell % cell)); } void CoreWords::word_peek(State& state) { // ( addr cell? -- n ) @@ -233,7 +233,7 @@ void CoreWords::word_semic(State& state) { // Concludes word definition. state.compiling(false); auto cell = state.pop(); - auto dcell = cell - state.dict.latest(); + auto dcell = (DoubleCell)cell - state.dict.latest(); if (dcell >= Dictionary::MaxDistance) { // Large distance to previous entry: store in dedicated cell. state.dict.write(static_cast<Addr>(cell) + sizeof(Cell), |