Update HCS_HC.sinc

Fixes https://github.com/NationalSecurityAgency/ghidra/issues/7064 for 68HC05
This commit is contained in:
philpem 2024-10-17 01:24:10 +01:00 committed by GitHub
parent 270e6867db
commit 67bfea173f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1258,7 +1258,7 @@ macro Push2(operand) {
@if defined(HCS08) || defined(HC08) || defined(HC05)
:JMP ADDRI is (op=0xDC | op=0xEC | op=0xFC) ... & ADDRI
{
goto [ADDRI];
goto ADDRI;
}
@endif
@ -1278,7 +1278,7 @@ macro Push2(operand) {
tmp:2 = inst_next;
Push2( tmp );
call [ADDRI];
call ADDRI;
}
@endif