roza/lib/opcodes.h

13 lines
228 B
C

#ifndef RZ_OPCODES_H
#define RZ_OPCODES_H
#include "commons.h"
#define OPCODES(G) \
G(OP_ASSERT), \
G(OP_PUSH), G(OP_POP)
RZ_ENUM_H(Opcode, OPCODES);
#endif