diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-16 20:12:03 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-16 20:12:03 -0500 |
commit | e45926fa2a1bc332214f0467de6020529d91b7ba (patch) | |
tree | d9d1d32f9dc23ad145b0a73aeb4b537314188ad1 /types.hpp | |
parent | a506b65bdd589997195e3f93222c37a539a29a28 (diff) |
handle input within dictionary
Diffstat (limited to 'types.hpp')
-rw-r--r-- | types.hpp | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -28,12 +28,14 @@ using Addr = uint16_t; using Cell = int16_t; using Func = int (*)(State&); -enum class Pass +struct Word { - None, - Comment, - Colon, - Constant + Addr start = 0; + Addr end = 0; + + unsigned size() const noexcept { + return end - start; + } }; enum class ParseStatus |