growl/next/core/opcodes.h
2026-02-06 11:52:53 -03:00

26 lines
365 B
C

#ifndef GROWL_OPCODES_H
#define GROWL_OPCODES_H
enum GrowlOpcode {
GOP_NOP = 0,
GOP_PUSH_NIL,
GOP_PUSH_CONSTANT,
GOP_DROP,
GOP_DUP,
GOP_SWAP,
GOP_2DROP,
GOP_2DUP,
GOP_2SWAP,
GOP_NIP,
GOP_OVER,
GOP_BURY,
GOP_DIG,
GOP_TO_RETAIN,
GOP_FROM_RETAIN,
GOP_CALL,
GOP_CALL_NEXT,
GOP_TAIL_CALL,
GOP_RETURN,
};
#endif // GROWL_OPCODES_H