diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-29 11:48:12 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-29 11:48:12 -0500 |
commit | 98e2c140860b2783f2f72934dbfa279dea2dc2ad (patch) | |
tree | 5711e2f715b3b733068c01b13831999acd238c22 /source/parse.cpp | |
parent | 4fe405dbb3cff8dcd5e3f9623a7a2ccf33af64b8 (diff) |
PoC msp430 register/flag support
Diffstat (limited to 'source/parse.cpp')
-rw-r--r-- | source/parse.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/source/parse.cpp b/source/parse.cpp index 6f68c84..97ae4fe 100644 --- a/source/parse.cpp +++ b/source/parse.cpp @@ -22,6 +22,12 @@ #include <cctype> #include <cstdlib> +__attribute__((weak)) +int findword(const char *, int) +{ + return -1; +} + [[nodiscard]] static Error parseword(const char *start, const char *end) { @@ -34,11 +40,13 @@ static Error parseword(const char *start, const char *end) } else { result = execute1(word); } - } else if (isdigit(*start)) { + } else if (isdigit(*start) || (*start == '-' && isdigit(*(start + 1)))) { push(std::atoi(start)); if (STATE) compileliteral(); + } else if (findword(start, end - start)) { + return Error::noword; } } |