mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-28 07:00:43 +00:00
GP-4585: Fixed 6805 branch conditionals
This commit is contained in:
parent
3da9abdd77
commit
0e481512a8
@ -169,7 +169,7 @@ DIRECT: imm8 is imm8 { export *:1 imm8; }
|
||||
}
|
||||
:BHI REL is op=0x22;REL
|
||||
{
|
||||
local tmp = C + Z;
|
||||
local tmp = C || Z;
|
||||
if (tmp == 0) goto REL;
|
||||
}
|
||||
|
||||
@ -195,7 +195,7 @@ DIRECT: imm8 is imm8 { export *:1 imm8; }
|
||||
|
||||
:BLS REL is op=0x23;REL
|
||||
{
|
||||
local tmp = C + Z;
|
||||
local tmp = C || Z;
|
||||
if (tmp) goto REL;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user