diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-24 19:09:53 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-24 19:09:53 -0500 |
commit | 0b88b4596e6265863e75e7aabcca52734e147fae (patch) | |
tree | 2210e75d0b5eff6e462770e5278a1baf504423b0 /memdict.hpp | |
parent | 914a75b2097090595d12015b750f97dc55bf7dcd (diff) |
compact implementation; runs on msp430
Diffstat (limited to 'memdict.hpp')
-rw-r--r-- | memdict.hpp | 13 |
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; } }; |