summaryrefslogtreecommitdiffstats
path: root/src/emu/opc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/opc.c')
-rw-r--r--src/emu/opc.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/emu/opc.c b/src/emu/opc.c
index 870a272..fa46b26 100644
--- a/src/emu/opc.c
+++ b/src/emu/opc.c
@@ -28,12 +28,13 @@ opc_mapping_t opc_map[] = {
{ "SH", OPC_SH },
{ "SW", OPC_SW },
{ "CMP", OPC_CMP },
- { "BEQ", OPC_BEQ },
- { "BNE", OPC_BNE },
- { "BLT", OPC_BLT },
- { "BGE", OPC_BGE },
- { "BLE", OPC_BLE },
- { "BGT", OPC_BGT },
+ { "BEZ", OPC_BEZ },
+ { "EQ", OPC_EQ },
+ { "NE", OPC_NE },
+ { "LT", OPC_LT },
+ { "GE", OPC_GE },
+ { "LE", OPC_LE },
+ { "GT", OPC_GT },
{ "J", OPC_J },
{ "JAL", OPC_JAL },
{ "SYS", OPC_SYS },