This repository has been archived on 2023-09-09. You can view files and clone it, but cannot push or open issues/pull-requests.
skemla/lib/opcodes.hpp

12 lines
178 B
C++

#ifndef sk_OPCODES_HPP
#define sk_OPCODES_HPP
#include "commons.hpp"
#define OPCODE(G) \
G(OPCODE_PUSH_CONST)
SK_ENUM(Opcode, OPCODE);
#endif