z80: fixed swapped low/high bytes in ix,aa & iy,aa

This commit is contained in:
Rob McMullen 2016-02-24 15:00:18 -08:00
parent 4c08d9e0a9
commit b6d54790f8
1 changed files with 2 additions and 2 deletions

4
z80.py
View File

@ -240,13 +240,13 @@ addressModeTable = {
"indnn,hl" : "(${1:02X}{0:02X}),hl",
"indsp,hl" : "(sp),hl",
"ix" : "ix",
"ix,aa" : "ix,${0:02X}{1:02X}",
"ix,aa" : "ix,${1:02X}{0:02X}",
"ix,bc" : "ix,bc",
"ix,de" : "ix,de",
"ix,indaa" : "ix,(${1:02X}{0:02X})",
"ix,ix" : "ix,ix",
"iy" : "iy",
"iy,aa" : "iy,${0:02X}{1:02X}",
"iy,aa" : "iy,${1:02X}{0:02X}",
"iy,bc" : "iy,bc",
"iy,bc" : "iy,bc",
"iy,de" : "iy,de",