aboutsummaryrefslogtreecommitdiffstats
path: root/libalee
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-03-11 16:32:48 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-03-11 16:32:48 -0500
commitc46f531b6bb62d7dd947504a1c731efb5eb57ef5 (patch)
treea54fc62ce1bf6dad5d5b90124a9cadf6eb4feb15 /libalee
parentbf7fe756a175a90dd82e970e5d620c6d8c459c17 (diff)
u< um/mod
Diffstat (limited to 'libalee')
-rw-r--r--libalee/corewords.cpp16
-rw-r--r--libalee/corewords.hpp4
-rw-r--r--libalee/types.hpp1
3 files changed, 19 insertions, 2 deletions
diff --git a/libalee/corewords.cpp b/libalee/corewords.cpp
index 136619c..b12f53b 100644
--- a/libalee/corewords.cpp
+++ b/libalee/corewords.cpp
@@ -230,6 +230,22 @@ execute:
state.push(dcell);
state.push(dcell >> (sizeof(Cell) * 8));
break;
+ case 35: // u<
+ cell = state.pop();
+ state.top() = static_cast<Addr>(state.top()) <
+ static_cast<Addr>(cell) ? -1 : 0;
+ break;
+ case 36: // um/mod
+ cell = state.pop();
+ dcell = state.pop();
+ dcell <<= sizeof(Cell) * 8;
+ dcell |= static_cast<Addr>(state.pop());
+
+ state.push(static_cast<DoubleAddr>(dcell) %
+ static_cast<Addr>(cell));
+ state.push(static_cast<DoubleAddr>(dcell) /
+ static_cast<Addr>(cell));
+ break;
default:
state.push(index - WordCount);
break;
diff --git a/libalee/corewords.hpp b/libalee/corewords.hpp
index c08c4cd..f6465c4 100644
--- a/libalee/corewords.hpp
+++ b/libalee/corewords.hpp
@@ -31,7 +31,7 @@ void user_sys(State&);
class CoreWords
{
public:
- constexpr static std::size_t WordCount = 35;
+ constexpr static std::size_t WordCount = 37;
constexpr static int Semicolon = 26;
/**
@@ -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*\0";
+ "um*\0u<\0um/mod\0";
};
#endif // ALEEFORTH_COREWORDS_HPP
diff --git a/libalee/types.hpp b/libalee/types.hpp
index 29c93e8..f23f92e 100644
--- a/libalee/types.hpp
+++ b/libalee/types.hpp
@@ -28,6 +28,7 @@
using Addr = uint16_t;
using Cell = int16_t;
using DoubleCell = int32_t;
+using DoubleAddr = uint32_t; // Only used for um/mod.
struct Dictionary;
struct State;