roza/lib/opcodes.h

14 lines
275 B
C
Raw Normal View History

2023-12-09 17:24:41 +00:00
#ifndef RZ_OPCODES_H
#define RZ_OPCODES_H
#include "commons.h"
#define OPCODES(G) \
2023-12-11 17:01:22 +00:00
G(OP_ASSERT), \
G(OP_PUSH), G(OP_POP), \
G(OP_EQ), G(OP_NE)
2023-12-09 17:24:41 +00:00
RZ_ENUM_H(Opcode, OPCODES);
#endif