aboutsummaryrefslogtreecommitdiffstats
path: root/types.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-02-16 20:12:03 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-02-16 20:12:03 -0500
commite45926fa2a1bc332214f0467de6020529d91b7ba (patch)
treed9d1d32f9dc23ad145b0a73aeb4b537314188ad1 /types.hpp
parenta506b65bdd589997195e3f93222c37a539a29a28 (diff)
handle input within dictionary
Diffstat (limited to 'types.hpp')
-rw-r--r--types.hpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/types.hpp b/types.hpp
index 95f9ff1..5c4d358 100644
--- a/types.hpp
+++ b/types.hpp
@@ -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