fakir/src/opcodes.hpp

14 lines
172 B
C++

#ifndef fk_OPCODES_HPP
#define fk_OPCODES_HPP
#define OPCODES(G) G(OP_LOAD_CONST), G(OP_POP)
#include "commons.hpp"
namespace fk
{
FK_ENUM(Opcode, OPCODES);
}
#endif