aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode/ops.h
blob: b58631f42e4c772f2ef6a2e9d2d166a16615745e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef BDL_OPS_H
#define BDL_OPS_H

typedef enum Ops {
    OP_CONSTANT,
    OP_SUM,
    OP_SUB,
    OP_MUL,
    OP_DIV,
    OP_MOD,
    OP_RETURN,
} Ops;

#endif // BDL_OPS_H