diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-24 08:50:28 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-24 08:50:28 -0500 |
commit | dac0553eb5a4bd7b8b6ce408c18bd4d2779e094f (patch) | |
tree | 724997dd683bfa6adef88e47ca4446f869374dcd /types.hpp | |
parent | 81b2fa5d3c270a377504eb5002f0168fc02fd2ff (diff) |
remove ParseStatus; reduce stack usage
Diffstat (limited to 'types.hpp')
-rw-r--r-- | types.hpp | 11 |
1 files changed, 2 insertions, 9 deletions
@@ -20,7 +20,6 @@ #define ALEEFORTH_TYPES_HPP #include <cstdint> -#include <string_view> struct State; @@ -28,6 +27,8 @@ using Addr = uint16_t; using Cell = int16_t; using Func = void (*)(State&); +constexpr unsigned int MaxCellNumberChars = 6; // -32768 + struct Word { Addr start = 0; @@ -38,13 +39,5 @@ struct Word } }; -enum class ParseStatus -{ - Finished, - NotAWord -}; - -std::string_view to_string(ParseStatus); - #endif // ALEEFORTH_TYPES_HPP |