Files
Toy/source/opcodes.h
2022-08-06 14:50:22 +01:00

26 lines
315 B
C

#pragma once
typedef enum Opcode {
OP_EOF,
//basic operations
OP_PRINT,
//data
OP_LITERAL,
OP_LITERAL_LONG, //for more than 256 literals in a chunk
//operators
OP_NEGATE,
OP_ADDITION,
OP_SUBTRACTION,
OP_MULTIPLICATION,
OP_DIVISION,
OP_MODULO,
//meta
OP_SECTION_END,
//TODO: add more
} Opcode;