Add seti and int operators
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
|
||||
namespace Token
|
||||
{
|
||||
enum class OperandType
|
||||
enum class OperandType : int
|
||||
{
|
||||
Unknown = -1,
|
||||
AddInteger = 0,
|
||||
@@ -15,7 +15,9 @@ namespace Token
|
||||
Jump,
|
||||
LessThanInteger,
|
||||
GreaterThanInteger,
|
||||
EqualInteger
|
||||
EqualInteger,
|
||||
SetInteger,
|
||||
Interrupt
|
||||
};
|
||||
|
||||
OperandType GetOperandType(std::string const & op);
|
||||
|
||||
Reference in New Issue
Block a user