basic-decompiler: add bgtz and bgtzl instructions

This commit is contained in:
Clément G 2013-03-27 18:01:30 +01:00
parent 88e5eb496b
commit f10827f9bd

View File

@ -57,6 +57,8 @@ std::map<std::string, Instruction> instructions =
{"blezl", {"R0 l0", "%R0 <= 0"}},
{"bltz", {"R0 l0", "%R0 < 0"}},
{"bltzl", {"R0 l0", "%R0 < 0"}},
{"bgtz", {"R0 l0", "%R0 > 0"}},
{"bgtzl", {"R0 l0", "%R0 > 0"}},
{"jal", {"f0", "v0, v1 = %f0"}},
{"jr", {"x0", "%x0"}},