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:
Wolfgang Schwotzer 2019-03-21 08:06:48 +01:00 committed by Nguyen Anh Quynh
parent 889ae45cf2
commit 16ea9f0ed1
1 changed files with 1 additions and 1 deletions

View File

@ -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);