Correct Z80 disassembler format issue.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon 2019-02-21 22:51:42 +00:00
parent 27e1c5c9f8
commit 968b1c6545

View File

@ -261,7 +261,7 @@ namespace EightBit
switch (q)
{
case 0: // LD (nn),rp
specification = "LD ({1:X4H)," + this.RP(p);
specification = "LD ({1:X4}H)," + this.RP(p);
break;
case 1: // LD rp,(nn)
specification = "LD " + this.RP(p) + ",(%2$04XH)";