mirror of
https://github.com/joel16/uofw.git
synced 2024-11-23 11:39:50 +00:00
basic-decompiler: add bgtz and bgtzl instructions
This commit is contained in:
parent
88e5eb496b
commit
f10827f9bd
@ -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"}},
|
||||
|
Loading…
Reference in New Issue
Block a user