aboutsummaryrefslogtreecommitdiffstats
path: root/memdict.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-03-18 12:40:46 -0400
committerClyne Sullivan <clyne@bitgloo.com>2023-03-18 12:40:46 -0400
commitd36bb13f52b3899fd0f57e38f00d97e2c3a0f627 (patch)
treee1a2780f42bf82c6fcbbd9c2219d55dbc8f03c53 /memdict.hpp
parent74753670d582e4ceeaba383e4ce360eb13004a35 (diff)
-Wconversion
Diffstat (limited to 'memdict.hpp')
-rw-r--r--memdict.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/memdict.hpp b/memdict.hpp
index 22841c5..c88bc7d 100644
--- a/memdict.hpp
+++ b/memdict.hpp
@@ -46,6 +46,10 @@ public:
virtual void writebyte(Addr addr, uint8_t value) noexcept final {
dict[addr] = value;
}
+
+ virtual unsigned long int capacity() const noexcept final {
+ return sizeof(dict);
+ }
};
#endif // ALEEFORTH_MEMDICT_HPP