aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--asm/lexer.cpp18
1 files changed, 17 insertions, 1 deletions
diff --git a/asm/lexer.cpp b/asm/lexer.cpp
index 189b330..f8abf0a 100644
--- a/asm/lexer.cpp
+++ b/asm/lexer.cpp
@@ -20,7 +20,7 @@ using std::string, std::string_view, std::pair, std::make_pair;
constexpr auto VALID_SYMBOL = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUV"
"WXYZ0123456789-_.:()%#$",
- VALID_DIGIT = "0123456789";
+ VALID_DIGIT = "0123456789", VALID_HEX = "0123456789abcdefABCDEF";
bool is_char_in_s(char c, const char *s)
{
@@ -237,3 +237,19 @@ token_t tokenise_literal_number(string_view &source, size_t &column)
return t;
}
+
+token_t tokenise_literal_hex(string_view &source, size_t &column)
+{
+ // Remove x char from source
+ source.remove_prefix(1);
+ auto end = source.find_first_not_of(VALID_HEX);
+ if (end == string::npos)
+ end = source.size() - 1;
+ string digits{source.substr(0, end)};
+ source.remove_prefix(end);
+
+ token_t t = {token_type_t::LITERAL_NUMBER, "0x" + digits, column};
+
+ column += digits.size() + 1;
+ return t;
+}