aboutsummaryrefslogtreecommitdiffstats
path: root/memdict.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-02-24 19:09:53 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-02-24 19:09:53 -0500
commit0b88b4596e6265863e75e7aabcca52734e147fae (patch)
tree2210e75d0b5eff6e462770e5278a1baf504423b0 /memdict.hpp
parent914a75b2097090595d12015b750f97dc55bf7dcd (diff)
compact implementation; runs on msp430
Diffstat (limited to 'memdict.hpp')
-rw-r--r--memdict.hpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/memdict.hpp b/memdict.hpp
index b956d5d..65063e0 100644
--- a/memdict.hpp
+++ b/memdict.hpp
@@ -21,26 +21,29 @@
#include "dictionary.hpp"
-constexpr unsigned long int MemDictSize = 4096;
+#ifndef MEMDICTSIZE
+#define MEMDICTSIZE (4096)
+#endif
+constexpr unsigned long int MemDictSize = MEMDICTSIZE;
class MemDict : public Dictionary
{
uint8_t dict[MemDictSize];
public:
- virtual Cell read(Addr addr) const final {
+ virtual Cell read(Addr addr) const noexcept final {
return *reinterpret_cast<const Cell *>(dict + addr);
}
- virtual void write(Addr addr, Cell value) final {
+ virtual void write(Addr addr, Cell value) noexcept final {
*reinterpret_cast<Cell *>(dict + addr) = value;
}
- virtual uint8_t readbyte(Addr addr) const final {
+ virtual uint8_t readbyte(Addr addr) const noexcept final {
return dict[addr];
}
- virtual void writebyte(Addr addr, uint8_t value) final {
+ virtual void writebyte(Addr addr, uint8_t value) noexcept final {
dict[addr] = value;
}
};