summaryrefslogtreecommitdiffstats
path: root/src/emu/opc.c
diff options
context:
space:
mode:
authorJana Rekittke <jana@rekittke.name>2009-07-02 21:14:37 +0200
committerBenedikt Böhm <bb@xnull.de>2009-07-02 21:14:37 +0200
commit1c67357ad255533b03cb22d31b7c6cf31028fc99 (patch)
tree705dc88564544942f87a9946a54e872074ef4f74 /src/emu/opc.c
parent87b6f874776b253f77f4a1bf4c1844d99a8e544f (diff)
downloadswppy-1c67357ad255533b03cb22d31b7c6cf31028fc99.tar.gz
swppy-1c67357ad255533b03cb22d31b7c6cf31028fc99.tar.xz
swppy-1c67357ad255533b03cb22d31b7c6cf31028fc99.zip
adapt instructions changes from back/tac.py
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 },