change FNC to FN and fnc to fn for function based opcodes

This commit is contained in:
Bill Currie 2004-02-11 06:52:19 +00:00
parent 1c090c38a3
commit a821f048a0
3 changed files with 33 additions and 33 deletions

View file

@ -165,7 +165,7 @@ opcode_t pr_opcodes[] = {
ev_entity, ev_entity, ev_integer,
PROG_ID_VERSION,
},
{"==", "eq.fnc", OP_EQ_FNC, false,
{"==", "eq.fn", OP_EQ_FN, false,
ev_func, ev_func, ev_integer,
PROG_ID_VERSION,
},
@ -186,7 +186,7 @@ opcode_t pr_opcodes[] = {
ev_entity, ev_entity, ev_integer,
PROG_ID_VERSION,
},
{"!=", "ne.fnc", OP_NE_FNC, false,
{"!=", "ne.fn", OP_NE_FN, false,
ev_func, ev_func, ev_integer,
PROG_ID_VERSION,
},
@ -249,7 +249,7 @@ opcode_t pr_opcodes[] = {
PROG_ID_VERSION,
"%Ga.%Gb, %gc",
},
{".", "load.fnc", OP_LOAD_FNC, false,
{".", "load.fn", OP_LOAD_FN, false,
ev_entity, ev_field, ev_func,
PROG_ID_VERSION,
"%Ga.%Gb, %gc",
@ -295,7 +295,7 @@ opcode_t pr_opcodes[] = {
PROG_VERSION,
"*(%Ga + %Gb), %gc",
},
{".", "loadb.fnc", OP_LOADB_FNC, false,
{".", "loadb.fn", OP_LOADB_FN, false,
ev_pointer, ev_integer, ev_func,
PROG_VERSION,
"*(%Ga + %Gb), %gc",
@ -341,7 +341,7 @@ opcode_t pr_opcodes[] = {
PROG_VERSION,
"*(%Ga + %sb), %gc",
},
{".", "loadbi.fnc", OP_LOADBI_FNC, false,
{".", "loadbi.fn", OP_LOADBI_FN, false,
ev_pointer, ev_short, ev_func,
PROG_VERSION,
"*(%Ga + %sb), %gc",
@ -392,7 +392,7 @@ opcode_t pr_opcodes[] = {
PROG_VERSION,
"%Ga, %gc",
},
{"&", "address.fnc", OP_ADDRESS_FNC, false,
{"&", "address.fn", OP_ADDRESS_FN, false,
ev_func, ev_void, ev_pointer,
PROG_VERSION,
"%Ga, %gc",
@ -471,7 +471,7 @@ opcode_t pr_opcodes[] = {
PROG_ID_VERSION,
"%Ga, %gb",
},
{"=", "store.fnc", OP_STORE_FNC, true,
{"=", "store.fn", OP_STORE_FN, true,
ev_func, ev_func, ev_void,
PROG_ID_VERSION,
"%Ga, %gb",
@ -517,7 +517,7 @@ opcode_t pr_opcodes[] = {
PROG_ID_VERSION,
"%Ga, *%Gb",
},
{".=", "storep.fnc", OP_STOREP_FNC, true,
{".=", "storep.fn", OP_STOREP_FN, true,
ev_func, ev_pointer, ev_void,
PROG_ID_VERSION,
"%Ga, *%Gb",
@ -563,7 +563,7 @@ opcode_t pr_opcodes[] = {
PROG_VERSION,
"%Ga, *(%Gb + %Gc)",
},
{".=", "storeb.fnc", OP_STOREB_FNC, true,
{".=", "storeb.fn", OP_STOREB_FN, true,
ev_func, ev_pointer, ev_integer,
PROG_VERSION,
"%Ga, *(%Gb + %Gc)",
@ -609,7 +609,7 @@ opcode_t pr_opcodes[] = {
PROG_VERSION,
"%Ga, *(%Gb + %sc)",
},
{".=", "storebi.fnc", OP_STOREBI_FNC, true,
{".=", "storebi.fn", OP_STOREBI_FN, true,
ev_func, ev_pointer, ev_short,
PROG_VERSION,
"%Ga, *(%Gb + %sc)",
@ -656,7 +656,7 @@ opcode_t pr_opcodes[] = {
PROG_ID_VERSION,
"%Ga, %gc",
},
{"!", "not.fnc", OP_NOT_FNC, false,
{"!", "not.fn", OP_NOT_FN, false,
ev_func, ev_void, ev_integer,
PROG_ID_VERSION,
"%Ga, %gc",