s/pic_instruction/pic_opcode/g
This commit is contained in:
parent
51781581d7
commit
4e83ad4843
|
@ -1,7 +1,7 @@
|
||||||
#ifndef IREP_H__
|
#ifndef IREP_H__
|
||||||
#define IREP_H__
|
#define IREP_H__
|
||||||
|
|
||||||
enum pic_instruction {
|
enum pic_opcode {
|
||||||
OP_PUSHNIL,
|
OP_PUSHNIL,
|
||||||
OP_PUSHTRUE,
|
OP_PUSHTRUE,
|
||||||
OP_PUSHFALSE,
|
OP_PUSHFALSE,
|
||||||
|
@ -23,7 +23,7 @@ enum pic_instruction {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct pic_code {
|
struct pic_code {
|
||||||
enum pic_instruction insn;
|
enum pic_opcode insn;
|
||||||
union {
|
union {
|
||||||
double f;
|
double f;
|
||||||
int i;
|
int i;
|
||||||
|
|
Loading…
Reference in New Issue