Update lexer trivially

HALT is now an opcode, which we deal with already.
This commit is contained in:
2024-06-01 01:47:16 +01:00
parent bbb8ed1337
commit f3f7578811

View File

@@ -20,7 +20,7 @@ extern "C"
#include "./lexer.hpp"
static_assert(NUMBER_OF_OPCODES == 98, "ERROR: Lexer is out of date");
static_assert(NUMBER_OF_OPCODES == 99, "ERROR: Lexer is out of date");
using std::string, std::string_view, std::pair, std::make_pair;