diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-14 09:44:08 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-14 09:44:08 -0400 |
commit | 74753670d582e4ceeaba383e4ce360eb13004a35 (patch) | |
tree | 1606fd3fb26fbda6a4ac796be91df6028e801625 /libalee | |
parent | c46f531b6bb62d7dd947504a1c731efb5eb57ef5 (diff) |
>number
Diffstat (limited to 'libalee')
-rw-r--r-- | libalee/corewords.cpp | 13 | ||||
-rw-r--r-- | libalee/corewords.hpp | 2 |
2 files changed, 10 insertions, 5 deletions
diff --git a/libalee/corewords.cpp b/libalee/corewords.cpp index b12f53b..9fef7b1 100644 --- a/libalee/corewords.cpp +++ b/libalee/corewords.cpp @@ -222,13 +222,18 @@ execute: find(state, word); } break; - case 34: // um* + case 34: // _uma + { + const auto plus = state.pop(); cell = state.pop(); - dcell = static_cast<DoubleCell>( - static_cast<Addr>(state.pop()) * - static_cast<Addr>(cell)); + dcell = state.pop(); + dcell <<= sizeof(Cell) * 8; + dcell |= static_cast<Addr>(state.pop()); + dcell *= static_cast<Addr>(cell); + dcell += static_cast<Addr>(plus); state.push(dcell); state.push(dcell >> (sizeof(Cell) * 8)); + } break; case 35: // u< cell = state.pop(); diff --git a/libalee/corewords.hpp b/libalee/corewords.hpp index f6465c4..993a420 100644 --- a/libalee/corewords.hpp +++ b/libalee/corewords.hpp @@ -54,7 +54,7 @@ public: "<<\0>>\0:\0_'\0execute\0" "exit\0;\0_jmp0\0_jmp\0" "depth\0_rdepth\0_in\0_ev\0find\0" - "um*\0u<\0um/mod\0"; + "_uma\0u<\0um/mod\0"; }; #endif // ALEEFORTH_COREWORDS_HPP |