mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
Merge branch
'GP-5449_ryanmkurtz_PR-7868_Lehona_tricore_fix_relocation_24REL' into patch (Closes #7868)
This commit is contained in:
commit
aa0753dbef
1 changed files with 3 additions and 4 deletions
|
@ -355,8 +355,7 @@ public class Tricore_ElfRelocationHandler
|
|||
*/
|
||||
private int relocate_relB(Memory memory, Address relocationAddress, long rv)
|
||||
throws MemoryAccessException {
|
||||
// TODO ff000000..00fffffe?
|
||||
long mask = 0xfffffffeL;
|
||||
long mask = 0x00000001L;
|
||||
long val = ~mask & rv;
|
||||
int iw = memory.getInt(relocationAddress) & 0xff;
|
||||
iw |= ((val & 0x1fffe) << 15);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue