aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode/ops.h
blob: 79092ab5e3d08b81d013dd5cc41a1177e24dafb7 (plain)
1
2
3
4
5
6
7
8
9
#ifndef BDL_OPS_H
#define BDL_OPS_H

typedef enum Ops {
    OP_CONSTANT,
    OP_RETURN,
} Ops;

#endif // BDL_OPS_H