nit: Also use lowercase 'pcr' (#1437)
- This occurs for M6809 PC relative indexed addressing.
In this case the register is referenced as pcr (and not pc).
- This is a consequence of lowercase registers introduced in
cc8da331d3
- Example: lda $FD00,pcr (instead of lda $FD00,pcR)
This commit is contained in:
parent
889ae45cf2
commit
16ea9f0ed1
|
@ -196,7 +196,7 @@ static void printOperand(MCInst *MI, SStream *O, m680x_info *info,
|
|||
|
||||
if (op->idx.base_reg == M680X_REG_PC &&
|
||||
(op->idx.offset_bits > 0))
|
||||
SStream_concat(O, "R");
|
||||
SStream_concat(O, "r");
|
||||
|
||||
printIncDec(true, O, info, op);
|
||||
|
||||
|
|
Loading…
Reference in New Issue