diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-17 08:15:30 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-17 08:15:30 -0500 |
commit | 24a61f3c99125c97ca79ea173c959d7bd89f1a48 (patch) | |
tree | 4d89ad660335f718f32482f49f985747de4e5c5f /dictionary.hpp | |
parent | e45926fa2a1bc332214f0467de6020529d91b7ba (diff) |
some cleanup
Diffstat (limited to 'dictionary.hpp')
-rw-r--r-- | dictionary.hpp | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/dictionary.hpp b/dictionary.hpp index b2c2107..90234ba 100644 --- a/dictionary.hpp +++ b/dictionary.hpp @@ -34,27 +34,25 @@ public: constexpr static Addr InputCells = 80; // bytes! constexpr static Addr Begin = Input + sizeof(Cell) + InputCells; - Word input(); - bool equal(Word, std::string_view) const; - bool equal(Word, Word) const; - Addr here = Begin; Addr latest = Begin; virtual Cell read(Addr) const = 0; - virtual int write(Addr, Cell) = 0; + virtual void write(Addr, Cell) = 0; virtual uint8_t readbyte(Addr) const = 0; - virtual int writebyte(Addr, uint8_t) = 0; + virtual void writebyte(Addr, uint8_t) = 0; Addr alignhere(); Addr allot(Cell); void add(Cell); void addDefinition(Word); + Addr find(Word); Addr getexec(Addr); + Word input(); -private: - bool issame(Addr, std::string_view, std::size_t); + bool equal(Word, std::string_view) const; + bool equal(Word, Word) const; }; #endif // ALEEFORTH_DICTIONARY_HPP |