Basic arithmetic and jump labels
This commit is contained in:
14
include/token/tokentype.hpp
Normal file
14
include/token/tokentype.hpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
namespace Token
|
||||
{
|
||||
enum class TokenType
|
||||
{
|
||||
Unknown = -1,
|
||||
Operand = 0,
|
||||
ImmediateInteger,
|
||||
Register,
|
||||
StatementEnd,
|
||||
Label
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user