diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-14 14:35:29 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-14 14:35:29 -0500 |
commit | a506b65bdd589997195e3f93222c37a539a29a28 (patch) | |
tree | 558f259f9e3eb2b8d1a03ced527b649bf0c5ed86 /dictionary.hpp | |
parent | 18bcd5dd0e283100d25ca44e60f1705f3c028456 (diff) |
allow byte indexing
Diffstat (limited to 'dictionary.hpp')
-rw-r--r-- | dictionary.hpp | 13 |
1 files changed, 9 insertions, 4 deletions
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 <cstddef> +#include <cstdint> #include <string_view> 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); |