From a506b65bdd589997195e3f93222c37a539a29a28 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 14 Feb 2023 14:35:29 -0500 Subject: allow byte indexing --- dictionary.hpp | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'dictionary.hpp') diff --git a/dictionary.hpp b/dictionary.hpp index 5c6471a..fd27920 100644 --- a/dictionary.hpp +++ b/dictionary.hpp @@ -22,20 +22,25 @@ #include "types.hpp" #include +#include #include class Dictionary { public: - constexpr static Addr Base = 0; - constexpr static Addr Compiling = 1; + constexpr static Addr Base = 0 * sizeof(Cell); + constexpr static Addr Compiling = 1 * sizeof(Cell); + constexpr static Addr Begin = 2 * sizeof(Cell); - Addr here = 2; - Addr latest = 0; + Addr here = Begin; + Addr latest = Begin; virtual Cell read(Addr) const = 0; virtual int write(Addr, Cell) = 0; + virtual uint8_t readbyte(Addr) const = 0; + virtual int writebyte(Addr, uint8_t) = 0; + Addr alignhere(); Addr allot(Cell); void add(Cell); void addDefinition(std::string_view); -- cgit v1.2.3