diff options
author | Sergey Belyashov <sergey.belyashov@gmail.com> | 2020-02-07 14:53:46 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2020-02-07 14:53:46 +0000 |
commit | 9fc0b501af78bc4a92f53ec712e1aaa123e0224c (patch) | |
tree | f3ef7a39227828252a1878f1a526b3df19ec7c65 /gas/testsuite | |
parent | adb8754e48d53b219ddaa9e8368e4b1acb9db53a (diff) | |
download | gdb-9fc0b501af78bc4a92f53ec712e1aaa123e0224c.zip gdb-9fc0b501af78bc4a92f53ec712e1aaa123e0224c.tar.gz gdb-9fc0b501af78bc4a92f53ec712e1aaa123e0224c.tar.bz2 |
Add support for the GBZ80 and Z80N variants of the Z80 architecture, and add DWARF debug info support to the Z80 assembler.
PR 25469
bfd * archures.c: Add GBZ80 and Z80N machine values.
* reloc.c: Add BFD_RELOC_Z80_16_BE.
* coff-z80.c: Add support for new reloc.
* coffcode.h: Add support for new machine values.
* cpu-z80.c: Add support for new machine names.
* elf32-z80.c: Add support for new reloc.
* bfd-in2.h: Regenerate.
* libbfd.h: Regenerate.
binutils* readelf.c (get_machine_flags): Add support for Z80N machine
number.
gas * config/tc-z80.c: Add -gbz80 command line option to generate code
for the GameBoy Z80. Add support for generating DWARF.
* config/tc-z80.h: Add support for DWARF debug information
generation.
* doc/c-z80.texi: Document new command line option.
* testsuite/gas/z80/gbz80_all.d: New file.
* testsuite/gas/z80/gbz80_all.s: New file.
* testsuite/gas/z80/z80.exp: Run the new tests.
* testsuite/gas/z80/z80n_all.d: New file.
* testsuite/gas/z80/z80n_all.s: New file.
* testsuite/gas/z80/z80n_reloc.d: New file.
include * coff/internal.h (R_IMM16BE): Define.
* elf/z80.h (EF_Z80_MACH_Z80N): Define.
(R_Z80_16_BE): New reloc.
ld * emulparams/elf32z80.sh: Use z80 emulation.
* emultempl/z80.em: Make generic to both COFF and ELF Z80 emulations.
* emultempl/z80elf.em: Delete.
* testsuite/ld-elf/pr22450.d: Expect to fail for the Z80.
* testsuite/ld-elf/sec64k.exp: Fix Z80 assembly.
* testsuite/ld-unique/pr21529.s: Avoid register name conflict.
* testsuite/ld-unique/unique.s: Likewise.
* testsuite/ld-unique/unique_empty.s: Likewise.
* testsuite/ld-unique/unique_shared.s: Likewise.
* testsuite/ld-unique/unique.d: Updated expected output.
* testsuite/ld-z80/arch_z80n.d: New file.
* testsuite/ld-z80/comb_arch_z80_z80n.d: New file.
* testsuite/ld-z80/labels.s: Add more labels.
* testsuite/ld-z80/relocs.s: Add more reloc tests.
* testsuite/ld-z80/relocs_f_z80n.d: New file
opcodes * z80-dis.c: Add support for GBZ80 opcodes.
Diffstat (limited to 'gas/testsuite')
-rw-r--r-- | gas/testsuite/gas/z80/gbz80_all.d | 514 | ||||
-rw-r--r-- | gas/testsuite/gas/z80/gbz80_all.s | 519 | ||||
-rw-r--r-- | gas/testsuite/gas/z80/z80.exp | 6 | ||||
-rw-r--r-- | gas/testsuite/gas/z80/z80n_all.d | 1208 | ||||
-rw-r--r-- | gas/testsuite/gas/z80/z80n_all.s | 1242 | ||||
-rw-r--r-- | gas/testsuite/gas/z80/z80n_reloc.d | 10 |
6 files changed, 3499 insertions, 0 deletions
diff --git a/gas/testsuite/gas/z80/gbz80_all.d b/gas/testsuite/gas/z80/gbz80_all.d new file mode 100644 index 0000000..0bb5db0 --- /dev/null +++ b/gas/testsuite/gas/z80/gbz80_all.d @@ -0,0 +1,514 @@ +#as: -gbz80 +#objdump: -d +#name: GBZ80 instruction set + +.*: .* + +Disassembly of section .text: + +0+ <.text>: +\s+[0-9a-f]+:\s+00\s+nop +\s+[0-9a-f]+:\s+01 af be\s+ld bc,0xbeaf +\s+[0-9a-f]+:\s+02\s+ld \(bc\),a +\s+[0-9a-f]+:\s+03\s+inc bc +\s+[0-9a-f]+:\s+04\s+inc b +\s+[0-9a-f]+:\s+05\s+dec b +\s+[0-9a-f]+:\s+06 fd\s+ld b,0xfd +\s+[0-9a-f]+:\s+07\s+rlca +\s+[0-9a-f]+:\s+08 af be\s+ld \(0xbeaf\),sp +\s+[0-9a-f]+:\s+09\s+add hl,bc +\s+[0-9a-f]+:\s+0a\s+ld a,\(bc\) +\s+[0-9a-f]+:\s+0b\s+dec bc +\s+[0-9a-f]+:\s+0c\s+inc c +\s+[0-9a-f]+:\s+0d\s+dec c +\s+[0-9a-f]+:\s+0e fd\s+ld c,0xfd +\s+[0-9a-f]+:\s+0f\s+rrca +\s+[0-9a-f]+:\s+10\s+stop +\s+[0-9a-f]+:\s+11 af be\s+ld de,0xbeaf +\s+[0-9a-f]+:\s+12\s+ld \(de\),a +\s+[0-9a-f]+:\s+13\s+inc de +\s+[0-9a-f]+:\s+14\s+inc d +\s+[0-9a-f]+:\s+15\s+dec d +\s+[0-9a-f]+:\s+16 fd\s+ld d,0xfd +\s+[0-9a-f]+:\s+17\s+rla +\s+[0-9a-f]+:\s+18 0a\s+jr 0x002d +\s+[0-9a-f]+:\s+19\s+add hl,de +\s+[0-9a-f]+:\s+1a\s+ld a,\(de\) +\s+[0-9a-f]+:\s+1b\s+dec de +\s+[0-9a-f]+:\s+1c\s+inc e +\s+[0-9a-f]+:\s+1d\s+dec e +\s+[0-9a-f]+:\s+1e fd\s+ld e,0xfd +\s+[0-9a-f]+:\s+1f\s+rra +\s+[0-9a-f]+:\s+20 0a\s+jr nz,0x0037 +\s+[0-9a-f]+:\s+21 af be\s+ld hl,0xbeaf +\s+[0-9a-f]+:\s+22\s+ld \(hl\+\),a +\s+[0-9a-f]+:\s+22\s+ld \(hl\+\),a +\s+[0-9a-f]+:\s+23\s+inc hl +\s+[0-9a-f]+:\s+24\s+inc h +\s+[0-9a-f]+:\s+25\s+dec h +\s+[0-9a-f]+:\s+26 fd\s+ld h,0xfd +\s+[0-9a-f]+:\s+27\s+daa +\s+[0-9a-f]+:\s+28 0a\s+jr z,0x0044 +\s+[0-9a-f]+:\s+29\s+add hl,hl +\s+[0-9a-f]+:\s+2a\s+ld a,\(hl\+\) +\s+[0-9a-f]+:\s+2a\s+ld a,\(hl\+\) +\s+[0-9a-f]+:\s+2b\s+dec hl +\s+[0-9a-f]+:\s+2c\s+inc l +\s+[0-9a-f]+:\s+2d\s+dec l +\s+[0-9a-f]+:\s+2e fd\s+ld l,0xfd +\s+[0-9a-f]+:\s+2f\s+cpl +\s+[0-9a-f]+:\s+30 0a\s+jr nc,0x004f +\s+[0-9a-f]+:\s+31 af be\s+ld sp,0xbeaf +\s+[0-9a-f]+:\s+32\s+ld \(hl-\),a +\s+[0-9a-f]+:\s+32\s+ld \(hl-\),a +\s+[0-9a-f]+:\s+33\s+inc sp +\s+[0-9a-f]+:\s+34\s+inc \(hl\) +\s+[0-9a-f]+:\s+35\s+dec \(hl\) +\s+[0-9a-f]+:\s+36 fd\s+ld \(hl\),0xfd +\s+[0-9a-f]+:\s+37\s+scf +\s+[0-9a-f]+:\s+38 0a\s+jr c,0x005c +\s+[0-9a-f]+:\s+39\s+add hl,sp +\s+[0-9a-f]+:\s+3a\s+ld a,\(hl-\) +\s+[0-9a-f]+:\s+3a\s+ld a,\(hl-\) +\s+[0-9a-f]+:\s+3b\s+dec sp +\s+[0-9a-f]+:\s+3c\s+inc a +\s+[0-9a-f]+:\s+3d\s+dec a +\s+[0-9a-f]+:\s+3e fd\s+ld a,0xfd +\s+[0-9a-f]+:\s+3f\s+ccf +\s+[0-9a-f]+:\s+40\s+ld b,b +\s+[0-9a-f]+:\s+41\s+ld b,c +\s+[0-9a-f]+:\s+42\s+ld b,d +\s+[0-9a-f]+:\s+43\s+ld b,e +\s+[0-9a-f]+:\s+44\s+ld b,h +\s+[0-9a-f]+:\s+45\s+ld b,l +\s+[0-9a-f]+:\s+46\s+ld b,\(hl\) +\s+[0-9a-f]+:\s+47\s+ld b,a +\s+[0-9a-f]+:\s+48\s+ld c,b +\s+[0-9a-f]+:\s+49\s+ld c,c +\s+[0-9a-f]+:\s+4a\s+ld c,d +\s+[0-9a-f]+:\s+4b\s+ld c,e +\s+[0-9a-f]+:\s+4c\s+ld c,h +\s+[0-9a-f]+:\s+4d\s+ld c,l +\s+[0-9a-f]+:\s+4e\s+ld c,\(hl\) +\s+[0-9a-f]+:\s+4f\s+ld c,a +\s+[0-9a-f]+:\s+50\s+ld d,b +\s+[0-9a-f]+:\s+51\s+ld d,c +\s+[0-9a-f]+:\s+52\s+ld d,d +\s+[0-9a-f]+:\s+53\s+ld d,e +\s+[0-9a-f]+:\s+54\s+ld d,h +\s+[0-9a-f]+:\s+55\s+ld d,l +\s+[0-9a-f]+:\s+56\s+ld d,\(hl\) +\s+[0-9a-f]+:\s+57\s+ld d,a +\s+[0-9a-f]+:\s+58\s+ld e,b +\s+[0-9a-f]+:\s+59\s+ld e,c +\s+[0-9a-f]+:\s+5a\s+ld e,d +\s+[0-9a-f]+:\s+5b\s+ld e,e +\s+[0-9a-f]+:\s+5c\s+ld e,h +\s+[0-9a-f]+:\s+5d\s+ld e,l +\s+[0-9a-f]+:\s+5e\s+ld e,\(hl\) +\s+[0-9a-f]+:\s+5f\s+ld e,a +\s+[0-9a-f]+:\s+60\s+ld h,b +\s+[0-9a-f]+:\s+61\s+ld h,c +\s+[0-9a-f]+:\s+62\s+ld h,d +\s+[0-9a-f]+:\s+63\s+ld h,e +\s+[0-9a-f]+:\s+64\s+ld h,h +\s+[0-9a-f]+:\s+65\s+ld h,l +\s+[0-9a-f]+:\s+66\s+ld h,\(hl\) +\s+[0-9a-f]+:\s+67\s+ld h,a +\s+[0-9a-f]+:\s+68\s+ld l,b +\s+[0-9a-f]+:\s+69\s+ld l,c +\s+[0-9a-f]+:\s+6a\s+ld l,d +\s+[0-9a-f]+:\s+6b\s+ld l,e +\s+[0-9a-f]+:\s+6c\s+ld l,h +\s+[0-9a-f]+:\s+6d\s+ld l,l +\s+[0-9a-f]+:\s+6e\s+ld l,\(hl\) +\s+[0-9a-f]+:\s+6f\s+ld l,a +\s+[0-9a-f]+:\s+70\s+ld \(hl\),b +\s+[0-9a-f]+:\s+71\s+ld \(hl\),c +\s+[0-9a-f]+:\s+72\s+ld \(hl\),d +\s+[0-9a-f]+:\s+73\s+ld \(hl\),e +\s+[0-9a-f]+:\s+74\s+ld \(hl\),h +\s+[0-9a-f]+:\s+75\s+ld \(hl\),l +\s+[0-9a-f]+:\s+76\s+halt +\s+[0-9a-f]+:\s+77\s+ld \(hl\),a +\s+[0-9a-f]+:\s+78\s+ld a,b +\s+[0-9a-f]+:\s+79\s+ld a,c +\s+[0-9a-f]+:\s+7a\s+ld a,d +\s+[0-9a-f]+:\s+7b\s+ld a,e +\s+[0-9a-f]+:\s+7c\s+ld a,h +\s+[0-9a-f]+:\s+7d\s+ld a,l +\s+[0-9a-f]+:\s+7e\s+ld a,\(hl\) +\s+[0-9a-f]+:\s+7f\s+ld a,a +\s+[0-9a-f]+:\s+80\s+add a,b +\s+[0-9a-f]+:\s+81\s+add a,c +\s+[0-9a-f]+:\s+82\s+add a,d +\s+[0-9a-f]+:\s+83\s+add a,e +\s+[0-9a-f]+:\s+84\s+add a,h +\s+[0-9a-f]+:\s+85\s+add a,l +\s+[0-9a-f]+:\s+86\s+add a,\(hl\) +\s+[0-9a-f]+:\s+87\s+add a,a +\s+[0-9a-f]+:\s+88\s+adc a,b +\s+[0-9a-f]+:\s+89\s+adc a,c +\s+[0-9a-f]+:\s+8a\s+adc a,d +\s+[0-9a-f]+:\s+8b\s+adc a,e +\s+[0-9a-f]+:\s+8c\s+adc a,h +\s+[0-9a-f]+:\s+8d\s+adc a,l +\s+[0-9a-f]+:\s+8e\s+adc a,\(hl\) +\s+[0-9a-f]+:\s+8f\s+adc a,a +\s+[0-9a-f]+:\s+90\s+sub a,b +\s+[0-9a-f]+:\s+91\s+sub a,c +\s+[0-9a-f]+:\s+92\s+sub a,d +\s+[0-9a-f]+:\s+93\s+sub a,e +\s+[0-9a-f]+:\s+94\s+sub a,h +\s+[0-9a-f]+:\s+95\s+sub a,l +\s+[0-9a-f]+:\s+96\s+sub a,\(hl\) +\s+[0-9a-f]+:\s+97\s+sub a,a +\s+[0-9a-f]+:\s+98\s+sbc a,b +\s+[0-9a-f]+:\s+99\s+sbc a,c +\s+[0-9a-f]+:\s+9a\s+sbc a,d +\s+[0-9a-f]+:\s+9b\s+sbc a,e +\s+[0-9a-f]+:\s+9c\s+sbc a,h +\s+[0-9a-f]+:\s+9d\s+sbc a,l +\s+[0-9a-f]+:\s+9e\s+sbc a,\(hl\) +\s+[0-9a-f]+:\s+9f\s+sbc a,a +\s+[0-9a-f]+:\s+a0\s+and b +\s+[0-9a-f]+:\s+a1\s+and c +\s+[0-9a-f]+:\s+a2\s+and d +\s+[0-9a-f]+:\s+a3\s+and e +\s+[0-9a-f]+:\s+a4\s+and h +\s+[0-9a-f]+:\s+a5\s+and l +\s+[0-9a-f]+:\s+a6\s+and \(hl\) +\s+[0-9a-f]+:\s+a7\s+and a +\s+[0-9a-f]+:\s+a8\s+xor b +\s+[0-9a-f]+:\s+a9\s+xor c +\s+[0-9a-f]+:\s+aa\s+xor d +\s+[0-9a-f]+:\s+ab\s+xor e +\s+[0-9a-f]+:\s+ac\s+xor h +\s+[0-9a-f]+:\s+ad\s+xor l +\s+[0-9a-f]+:\s+ae\s+xor \(hl\) +\s+[0-9a-f]+:\s+af\s+xor a +\s+[0-9a-f]+:\s+b0\s+or b +\s+[0-9a-f]+:\s+b1\s+or c +\s+[0-9a-f]+:\s+b2\s+or d +\s+[0-9a-f]+:\s+b3\s+or e +\s+[0-9a-f]+:\s+b4\s+or h +\s+[0-9a-f]+:\s+b5\s+or l +\s+[0-9a-f]+:\s+b6\s+or \(hl\) +\s+[0-9a-f]+:\s+b7\s+or a +\s+[0-9a-f]+:\s+b8\s+cp b +\s+[0-9a-f]+:\s+b9\s+cp c +\s+[0-9a-f]+:\s+ba\s+cp d +\s+[0-9a-f]+:\s+bb\s+cp e +\s+[0-9a-f]+:\s+bc\s+cp h +\s+[0-9a-f]+:\s+bd\s+cp l +\s+[0-9a-f]+:\s+be\s+cp \(hl\) +\s+[0-9a-f]+:\s+bf\s+cp a +\s+[0-9a-f]+:\s+c0\s+ret nz +\s+[0-9a-f]+:\s+c1\s+pop bc +\s+[0-9a-f]+:\s+c2 af be\s+jp nz,0xbeaf +\s+[0-9a-f]+:\s+c3 af be\s+jp 0xbeaf +\s+[0-9a-f]+:\s+c4 af be\s+call nz,0xbeaf +\s+[0-9a-f]+:\s+c5\s+push bc +\s+[0-9a-f]+:\s+c6 fd\s+add a,0xfd +\s+[0-9a-f]+:\s+c7\s+rst 0x00 +\s+[0-9a-f]+:\s+c8\s+ret z +\s+[0-9a-f]+:\s+c9\s+ret +\s+[0-9a-f]+:\s+ca af be\s+jp z,0xbeaf +\s+[0-9a-f]+:\s+00\s+nop +\s+[0-9a-f]+:\s+cc af be\s+call z,0xbeaf +\s+[0-9a-f]+:\s+cd af be\s+call 0xbeaf +\s+[0-9a-f]+:\s+ce fd\s+adc a,0xfd +\s+[0-9a-f]+:\s+cf\s+rst 0x08 +\s+[0-9a-f]+:\s+d0\s+ret nc +\s+[0-9a-f]+:\s+d1\s+pop de +\s+[0-9a-f]+:\s+d2 af be\s+jp nc,0xbeaf +\s+[0-9a-f]+:\s+d4 af be\s+call nc,0xbeaf +\s+[0-9a-f]+:\s+d5\s+push de +\s+[0-9a-f]+:\s+d6 fd\s+sub a,0xfd +\s+[0-9a-f]+:\s+d7\s+rst 0x10 +\s+[0-9a-f]+:\s+d8\s+ret c +\s+[0-9a-f]+:\s+d9\s+reti +\s+[0-9a-f]+:\s+da af be\s+jp c,0xbeaf +\s+[0-9a-f]+:\s+dc af be\s+call c,0xbeaf +\s+[0-9a-f]+:\s+de fd\s+sbc a,0xfd +\s+[0-9a-f]+:\s+df\s+rst 0x18 +\s+[0-9a-f]+:\s+e0 fd\s+ldh \(0xfd\),a +\s+[0-9a-f]+:\s+e1\s+pop hl +\s+[0-9a-f]+:\s+e2\s+ldh \(c\),a +\s+[0-9a-f]+:\s+e5\s+push hl +\s+[0-9a-f]+:\s+e6 fd\s+and 0xfd +\s+[0-9a-f]+:\s+e7\s+rst 0x20 +\s+[0-9a-f]+:\s+e8 f4\s+add sp,-12 +\s+[0-9a-f]+:\s+e9\s+jp \(hl\) +\s+[0-9a-f]+:\s+ea af be\s+ld \(0xbeaf\),a +\s+[0-9a-f]+:\s+ee fd\s+xor 0xfd +\s+[0-9a-f]+:\s+ef\s+rst 0x28 +\s+[0-9a-f]+:\s+f0 fd\s+ldh a,\(0xfd\) +\s+[0-9a-f]+:\s+f1\s+pop af +\s+[0-9a-f]+:\s+f2\s+ldh a,\(c\) +\s+[0-9a-f]+:\s+f3\s+di +\s+[0-9a-f]+:\s+f5\s+push af +\s+[0-9a-f]+:\s+f6 fd\s+or 0xfd +\s+[0-9a-f]+:\s+f7\s+rst 0x30 +\s+[0-9a-f]+:\s+f8 f4\s+ldhl sp,-12 +\s+[0-9a-f]+:\s+f9\s+ld sp,hl +\s+[0-9a-f]+:\s+fa af be\s+ld a,\(0xbeaf\) +\s+[0-9a-f]+:\s+fb\s+ei +\s+[0-9a-f]+:\s+fe fd\s+cp 0xfd +\s+[0-9a-f]+:\s+ff\s+rst 0x38 +\s+[0-9a-f]+:\s+cb 00\s+rlc b +\s+[0-9a-f]+:\s+cb 01\s+rlc c +\s+[0-9a-f]+:\s+cb 02\s+rlc d +\s+[0-9a-f]+:\s+cb 03\s+rlc e +\s+[0-9a-f]+:\s+cb 04\s+rlc h +\s+[0-9a-f]+:\s+cb 05\s+rlc l +\s+[0-9a-f]+:\s+cb 06\s+rlc \(hl\) +\s+[0-9a-f]+:\s+cb 07\s+rlc a +\s+[0-9a-f]+:\s+cb 08\s+rrc b +\s+[0-9a-f]+:\s+cb 09\s+rrc c +\s+[0-9a-f]+:\s+cb 0a\s+rrc d +\s+[0-9a-f]+:\s+cb 0b\s+rrc e +\s+[0-9a-f]+:\s+cb 0c\s+rrc h +\s+[0-9a-f]+:\s+cb 0d\s+rrc l +\s+[0-9a-f]+:\s+cb 0e\s+rrc \(hl\) +\s+[0-9a-f]+:\s+cb 0f\s+rrc a +\s+[0-9a-f]+:\s+cb 10\s+rl b +\s+[0-9a-f]+:\s+cb 11\s+rl c +\s+[0-9a-f]+:\s+cb 12\s+rl d +\s+[0-9a-f]+:\s+cb 13\s+rl e +\s+[0-9a-f]+:\s+cb 14\s+rl h +\s+[0-9a-f]+:\s+cb 15\s+rl l +\s+[0-9a-f]+:\s+cb 16\s+rl \(hl\) +\s+[0-9a-f]+:\s+cb 17\s+rl a +\s+[0-9a-f]+:\s+cb 18\s+rr b +\s+[0-9a-f]+:\s+cb 19\s+rr c +\s+[0-9a-f]+:\s+cb 1a\s+rr d +\s+[0-9a-f]+:\s+cb 1b\s+rr e +\s+[0-9a-f]+:\s+cb 1c\s+rr h +\s+[0-9a-f]+:\s+cb 1d\s+rr l +\s+[0-9a-f]+:\s+cb 1e\s+rr \(hl\) +\s+[0-9a-f]+:\s+cb 1f\s+rr a +\s+[0-9a-f]+:\s+cb 20\s+sla b +\s+[0-9a-f]+:\s+cb 21\s+sla c +\s+[0-9a-f]+:\s+cb 22\s+sla d +\s+[0-9a-f]+:\s+cb 23\s+sla e +\s+[0-9a-f]+:\s+cb 24\s+sla h +\s+[0-9a-f]+:\s+cb 25\s+sla l +\s+[0-9a-f]+:\s+cb 26\s+sla \(hl\) +\s+[0-9a-f]+:\s+cb 27\s+sla a +\s+[0-9a-f]+:\s+cb 28\s+sra b +\s+[0-9a-f]+:\s+cb 29\s+sra c +\s+[0-9a-f]+:\s+cb 2a\s+sra d +\s+[0-9a-f]+:\s+cb 2b\s+sra e +\s+[0-9a-f]+:\s+cb 2c\s+sra h +\s+[0-9a-f]+:\s+cb 2d\s+sra l +\s+[0-9a-f]+:\s+cb 2e\s+sra \(hl\) +\s+[0-9a-f]+:\s+cb 2f\s+sra a +\s+[0-9a-f]+:\s+cb 30\s+swap b +\s+[0-9a-f]+:\s+cb 31\s+swap c +\s+[0-9a-f]+:\s+cb 32\s+swap d +\s+[0-9a-f]+:\s+cb 33\s+swap e +\s+[0-9a-f]+:\s+cb 34\s+swap h +\s+[0-9a-f]+:\s+cb 35\s+swap l +\s+[0-9a-f]+:\s+cb 36\s+swap \(hl\) +\s+[0-9a-f]+:\s+cb 37\s+swap a +\s+[0-9a-f]+:\s+cb 38\s+srl b +\s+[0-9a-f]+:\s+cb 39\s+srl c +\s+[0-9a-f]+:\s+cb 3a\s+srl d +\s+[0-9a-f]+:\s+cb 3b\s+srl e +\s+[0-9a-f]+:\s+cb 3c\s+srl h +\s+[0-9a-f]+:\s+cb 3d\s+srl l +\s+[0-9a-f]+:\s+cb 3e\s+srl \(hl\) +\s+[0-9a-f]+:\s+cb 3f\s+srl a +\s+[0-9a-f]+:\s+cb 40\s+bit 0,b +\s+[0-9a-f]+:\s+cb 41\s+bit 0,c +\s+[0-9a-f]+:\s+cb 42\s+bit 0,d +\s+[0-9a-f]+:\s+cb 43\s+bit 0,e +\s+[0-9a-f]+:\s+cb 44\s+bit 0,h +\s+[0-9a-f]+:\s+cb 45\s+bit 0,l +\s+[0-9a-f]+:\s+cb 46\s+bit 0,\(hl\) +\s+[0-9a-f]+:\s+cb 47\s+bit 0,a +\s+[0-9a-f]+:\s+cb 48\s+bit 1,b +\s+[0-9a-f]+:\s+cb 49\s+bit 1,c +\s+[0-9a-f]+:\s+cb 4a\s+bit 1,d +\s+[0-9a-f]+:\s+cb 4b\s+bit 1,e +\s+[0-9a-f]+:\s+cb 4c\s+bit 1,h +\s+[0-9a-f]+:\s+cb 4d\s+bit 1,l +\s+[0-9a-f]+:\s+cb 4e\s+bit 1,\(hl\) +\s+[0-9a-f]+:\s+cb 4f\s+bit 1,a +\s+[0-9a-f]+:\s+cb 50\s+bit 2,b +\s+[0-9a-f]+:\s+cb 51\s+bit 2,c +\s+[0-9a-f]+:\s+cb 52\s+bit 2,d +\s+[0-9a-f]+:\s+cb 53\s+bit 2,e +\s+[0-9a-f]+:\s+cb 54\s+bit 2,h +\s+[0-9a-f]+:\s+cb 55\s+bit 2,l +\s+[0-9a-f]+:\s+cb 56\s+bit 2,\(hl\) +\s+[0-9a-f]+:\s+cb 57\s+bit 2,a +\s+[0-9a-f]+:\s+cb 58\s+bit 3,b +\s+[0-9a-f]+:\s+cb 59\s+bit 3,c +\s+[0-9a-f]+:\s+cb 5a\s+bit 3,d +\s+[0-9a-f]+:\s+cb 5b\s+bit 3,e +\s+[0-9a-f]+:\s+cb 5c\s+bit 3,h +\s+[0-9a-f]+:\s+cb 5d\s+bit 3,l +\s+[0-9a-f]+:\s+cb 5e\s+bit 3,\(hl\) +\s+[0-9a-f]+:\s+cb 5f\s+bit 3,a +\s+[0-9a-f]+:\s+cb 60\s+bit 4,b +\s+[0-9a-f]+:\s+cb 61\s+bit 4,c +\s+[0-9a-f]+:\s+cb 62\s+bit 4,d +\s+[0-9a-f]+:\s+cb 63\s+bit 4,e +\s+[0-9a-f]+:\s+cb 64\s+bit 4,h +\s+[0-9a-f]+:\s+cb 65\s+bit 4,l +\s+[0-9a-f]+:\s+cb 66\s+bit 4,\(hl\) +\s+[0-9a-f]+:\s+cb 67\s+bit 4,a +\s+[0-9a-f]+:\s+cb 68\s+bit 5,b +\s+[0-9a-f]+:\s+cb 69\s+bit 5,c +\s+[0-9a-f]+:\s+cb 6a\s+bit 5,d +\s+[0-9a-f]+:\s+cb 6b\s+bit 5,e +\s+[0-9a-f]+:\s+cb 6c\s+bit 5,h +\s+[0-9a-f]+:\s+cb 6d\s+bit 5,l +\s+[0-9a-f]+:\s+cb 6e\s+bit 5,\(hl\) +\s+[0-9a-f]+:\s+cb 6f\s+bit 5,a +\s+[0-9a-f]+:\s+cb 70\s+bit 6,b +\s+[0-9a-f]+:\s+cb 71\s+bit 6,c +\s+[0-9a-f]+:\s+cb 72\s+bit 6,d +\s+[0-9a-f]+:\s+cb 73\s+bit 6,e +\s+[0-9a-f]+:\s+cb 74\s+bit 6,h +\s+[0-9a-f]+:\s+cb 75\s+bit 6,l +\s+[0-9a-f]+:\s+cb 76\s+bit 6,\(hl\) +\s+[0-9a-f]+:\s+cb 77\s+bit 6,a +\s+[0-9a-f]+:\s+cb 78\s+bit 7,b +\s+[0-9a-f]+:\s+cb 79\s+bit 7,c +\s+[0-9a-f]+:\s+cb 7a\s+bit 7,d +\s+[0-9a-f]+:\s+cb 7b\s+bit 7,e +\s+[0-9a-f]+:\s+cb 7c\s+bit 7,h +\s+[0-9a-f]+:\s+cb 7d\s+bit 7,l +\s+[0-9a-f]+:\s+cb 7e\s+bit 7,\(hl\) +\s+[0-9a-f]+:\s+cb 7f\s+bit 7,a +\s+[0-9a-f]+:\s+cb 80\s+res 0,b +\s+[0-9a-f]+:\s+cb 81\s+res 0,c +\s+[0-9a-f]+:\s+cb 82\s+res 0,d +\s+[0-9a-f]+:\s+cb 83\s+res 0,e +\s+[0-9a-f]+:\s+cb 84\s+res 0,h +\s+[0-9a-f]+:\s+cb 85\s+res 0,l +\s+[0-9a-f]+:\s+cb 86\s+res 0,\(hl\) +\s+[0-9a-f]+:\s+cb 87\s+res 0,a +\s+[0-9a-f]+:\s+cb 88\s+res 1,b +\s+[0-9a-f]+:\s+cb 89\s+res 1,c +\s+[0-9a-f]+:\s+cb 8a\s+res 1,d +\s+[0-9a-f]+:\s+cb 8b\s+res 1,e +\s+[0-9a-f]+:\s+cb 8c\s+res 1,h +\s+[0-9a-f]+:\s+cb 8d\s+res 1,l +\s+[0-9a-f]+:\s+cb 8e\s+res 1,\(hl\) +\s+[0-9a-f]+:\s+cb 8f\s+res 1,a +\s+[0-9a-f]+:\s+cb 90\s+res 2,b +\s+[0-9a-f]+:\s+cb 91\s+res 2,c +\s+[0-9a-f]+:\s+cb 92\s+res 2,d +\s+[0-9a-f]+:\s+cb 93\s+res 2,e +\s+[0-9a-f]+:\s+cb 94\s+res 2,h +\s+[0-9a-f]+:\s+cb 95\s+res 2,l +\s+[0-9a-f]+:\s+cb 96\s+res 2,\(hl\) +\s+[0-9a-f]+:\s+cb 97\s+res 2,a +\s+[0-9a-f]+:\s+cb 98\s+res 3,b +\s+[0-9a-f]+:\s+cb 99\s+res 3,c +\s+[0-9a-f]+:\s+cb 9a\s+res 3,d +\s+[0-9a-f]+:\s+cb 9b\s+res 3,e +\s+[0-9a-f]+:\s+cb 9c\s+res 3,h +\s+[0-9a-f]+:\s+cb 9d\s+res 3,l +\s+[0-9a-f]+:\s+cb 9e\s+res 3,\(hl\) +\s+[0-9a-f]+:\s+cb 9f\s+res 3,a +\s+[0-9a-f]+:\s+cb a0\s+res 4,b +\s+[0-9a-f]+:\s+cb a1\s+res 4,c +\s+[0-9a-f]+:\s+cb a2\s+res 4,d +\s+[0-9a-f]+:\s+cb a3\s+res 4,e +\s+[0-9a-f]+:\s+cb a4\s+res 4,h +\s+[0-9a-f]+:\s+cb a5\s+res 4,l +\s+[0-9a-f]+:\s+cb a6\s+res 4,\(hl\) +\s+[0-9a-f]+:\s+cb a7\s+res 4,a +\s+[0-9a-f]+:\s+cb a8\s+res 5,b +\s+[0-9a-f]+:\s+cb a9\s+res 5,c +\s+[0-9a-f]+:\s+cb aa\s+res 5,d +\s+[0-9a-f]+:\s+cb ab\s+res 5,e +\s+[0-9a-f]+:\s+cb ac\s+res 5,h +\s+[0-9a-f]+:\s+cb ad\s+res 5,l +\s+[0-9a-f]+:\s+cb ae\s+res 5,\(hl\) +\s+[0-9a-f]+:\s+cb af\s+res 5,a +\s+[0-9a-f]+:\s+cb b0\s+res 6,b +\s+[0-9a-f]+:\s+cb b1\s+res 6,c +\s+[0-9a-f]+:\s+cb b2\s+res 6,d +\s+[0-9a-f]+:\s+cb b3\s+res 6,e +\s+[0-9a-f]+:\s+cb b4\s+res 6,h +\s+[0-9a-f]+:\s+cb b5\s+res 6,l +\s+[0-9a-f]+:\s+cb b6\s+res 6,\(hl\) +\s+[0-9a-f]+:\s+cb b7\s+res 6,a +\s+[0-9a-f]+:\s+cb b8\s+res 7,b +\s+[0-9a-f]+:\s+cb b9\s+res 7,c +\s+[0-9a-f]+:\s+cb ba\s+res 7,d +\s+[0-9a-f]+:\s+cb bb\s+res 7,e +\s+[0-9a-f]+:\s+cb bc\s+res 7,h +\s+[0-9a-f]+:\s+cb bd\s+res 7,l +\s+[0-9a-f]+:\s+cb be\s+res 7,\(hl\) +\s+[0-9a-f]+:\s+cb bf\s+res 7,a +\s+[0-9a-f]+:\s+cb c0\s+set 0,b +\s+[0-9a-f]+:\s+cb c1\s+set 0,c +\s+[0-9a-f]+:\s+cb c2\s+set 0,d +\s+[0-9a-f]+:\s+cb c3\s+set 0,e +\s+[0-9a-f]+:\s+cb c4\s+set 0,h +\s+[0-9a-f]+:\s+cb c5\s+set 0,l +\s+[0-9a-f]+:\s+cb c6\s+set 0,\(hl\) +\s+[0-9a-f]+:\s+cb c7\s+set 0,a +\s+[0-9a-f]+:\s+cb c8\s+set 1,b +\s+[0-9a-f]+:\s+cb c9\s+set 1,c +\s+[0-9a-f]+:\s+cb ca\s+set 1,d +\s+[0-9a-f]+:\s+cb cb\s+set 1,e +\s+[0-9a-f]+:\s+cb cc\s+set 1,h +\s+[0-9a-f]+:\s+cb cd\s+set 1,l +\s+[0-9a-f]+:\s+cb ce\s+set 1,\(hl\) +\s+[0-9a-f]+:\s+cb cf\s+set 1,a +\s+[0-9a-f]+:\s+cb d0\s+set 2,b +\s+[0-9a-f]+:\s+cb d1\s+set 2,c +\s+[0-9a-f]+:\s+cb d2\s+set 2,d +\s+[0-9a-f]+:\s+cb d3\s+set 2,e +\s+[0-9a-f]+:\s+cb d4\s+set 2,h +\s+[0-9a-f]+:\s+cb d5\s+set 2,l +\s+[0-9a-f]+:\s+cb d6\s+set 2,\(hl\) +\s+[0-9a-f]+:\s+cb d7\s+set 2,a +\s+[0-9a-f]+:\s+cb d8\s+set 3,b +\s+[0-9a-f]+:\s+cb d9\s+set 3,c +\s+[0-9a-f]+:\s+cb da\s+set 3,d +\s+[0-9a-f]+:\s+cb db\s+set 3,e +\s+[0-9a-f]+:\s+cb dc\s+set 3,h +\s+[0-9a-f]+:\s+cb dd\s+set 3,l +\s+[0-9a-f]+:\s+cb de\s+set 3,\(hl\) +\s+[0-9a-f]+:\s+cb df\s+set 3,a +\s+[0-9a-f]+:\s+cb e0\s+set 4,b +\s+[0-9a-f]+:\s+cb e1\s+set 4,c +\s+[0-9a-f]+:\s+cb e2\s+set 4,d +\s+[0-9a-f]+:\s+cb e3\s+set 4,e +\s+[0-9a-f]+:\s+cb e4\s+set 4,h +\s+[0-9a-f]+:\s+cb e5\s+set 4,l +\s+[0-9a-f]+:\s+cb e6\s+set 4,\(hl\) +\s+[0-9a-f]+:\s+cb e7\s+set 4,a +\s+[0-9a-f]+:\s+cb e8\s+set 5,b +\s+[0-9a-f]+:\s+cb e9\s+set 5,c +\s+[0-9a-f]+:\s+cb ea\s+set 5,d +\s+[0-9a-f]+:\s+cb eb\s+set 5,e +\s+[0-9a-f]+:\s+cb ec\s+set 5,h +\s+[0-9a-f]+:\s+cb ed\s+set 5,l +\s+[0-9a-f]+:\s+cb ee\s+set 5,\(hl\) +\s+[0-9a-f]+:\s+cb ef\s+set 5,a +\s+[0-9a-f]+:\s+cb f0\s+set 6,b +\s+[0-9a-f]+:\s+cb f1\s+set 6,c +\s+[0-9a-f]+:\s+cb f2\s+set 6,d +\s+[0-9a-f]+:\s+cb f3\s+set 6,e +\s+[0-9a-f]+:\s+cb f4\s+set 6,h +\s+[0-9a-f]+:\s+cb f5\s+set 6,l +\s+[0-9a-f]+:\s+cb f6\s+set 6,\(hl\) +\s+[0-9a-f]+:\s+cb f7\s+set 6,a +\s+[0-9a-f]+:\s+cb f8\s+set 7,b +\s+[0-9a-f]+:\s+cb f9\s+set 7,c +\s+[0-9a-f]+:\s+cb fa\s+set 7,d +\s+[0-9a-f]+:\s+cb fb\s+set 7,e +\s+[0-9a-f]+:\s+cb fc\s+set 7,h +\s+[0-9a-f]+:\s+cb fd\s+set 7,l +\s+[0-9a-f]+:\s+cb fe\s+set 7,\(hl\) +\s+[0-9a-f]+:\s+cb ff\s+set 7,a diff --git a/gas/testsuite/gas/z80/gbz80_all.s b/gas/testsuite/gas/z80/gbz80_all.s new file mode 100644 index 0000000..8e9085e --- /dev/null +++ b/gas/testsuite/gas/z80/gbz80_all.s @@ -0,0 +1,519 @@ + .text + .org 0 +;; Game Boy Z80 opcode test + nop + ld bc,0xbeaf + ld (bc),a + inc bc + inc b + dec b + ld b,0xfd + rlca + ld (0xbeaf),sp + add hl,bc + ld a,(bc) + dec bc + inc c + dec c + ld c,0xfd + rrca + stop + ld de,0xbeaf + ld (de),a + inc de + inc d + dec d + ld d,0xfd + rla + jr .+12 + add hl,de + ld a,(de) + dec de + inc e + dec e + ld e,0xfd + rra + jr nz,.+12 + ld hl,0xbeaf + ldi (hl),a + ld (hl+),a + inc hl + inc h + dec h + ld h,0xfd + daa + jr z,.+12 + add hl,hl + ldi a,(hl) + ld a,(hl+) + dec hl + inc l + dec l + ld l,0xfd + cpl + jr nc,.+12 + ld sp,0xbeaf + ldd (hl),a + ld (hl-),a + inc sp + inc (hl) + dec (hl) + ld (hl),0xfd + scf + jr c,.+12 + add hl,sp + ldd a,(hl) + ld a,(hl-) + dec sp + inc a + dec a + ld a,0xfd + ccf + ld b,b + ld b,c + ld b,d + ld b,e + ld b,h + ld b,l + ld b,(hl) + ld b,a + ld c,b + ld c,c + ld c,d + ld c,e + ld c,h + ld c,l + ld c,(hl) + ld c,a + ld d,b + ld d,c + ld d,d + ld d,e + ld d,h + ld d,l + ld d,(hl) + ld d,a + ld e,b + ld e,c + ld e,d + ld e,e + ld e,h + ld e,l + ld e,(hl) + ld e,a + ld h,b + ld h,c + ld h,d + ld h,e + ld h,h + ld h,l + ld h,(hl) + ld h,a + ld l,b + ld l,c + ld l,d + ld l,e + ld l,h + ld l,l + ld l,(hl) + ld l,a + ld (hl),b + ld (hl),c + ld (hl),d + ld (hl),e + ld (hl),h + ld (hl),l + halt + ld (hl),a + ld a,b + ld a,c + ld a,d + ld a,e + ld a,h + ld a,l + ld a,(hl) + ld a,a + add a,b + add a,c + add a,d + add a,e + add a,h + add a,l + add a,(hl) + add a,a + adc a,b + adc a,c + adc a,d + adc a,e + adc a,h + adc a,l + adc a,(hl) + adc a,a + sub a,b + sub a,c + sub a,d + sub a,e + sub a,h + sub a,l + sub a,(hl) + sub a,a + sbc a,b + sbc a,c + sbc a,d + sbc a,e + sbc a,h + sbc a,l + sbc a,(hl) + sbc a,a + and b + and c + and d + and e + and h + and l + and (hl) + and a + xor b + xor c + xor d + xor e + xor h + xor l + xor (hl) + xor a + or b + or c + or d + or e + or h + or l + or (hl) + or a + cp b + cp c + cp d + cp e + cp h + cp l + cp (hl) + cp a + ret nz + pop bc + jp nz,0xbeaf + jp 0xbeaf + call nz,0xbeaf + push bc + add a,0xfd + rst 0 + ret z + ret + jp z,0xbeaf + nop ;CB prefix + call z,0xbeaf + call 0xbeaf + adc a,0xfd + rst 0x08 + ret nc + pop de + jp nc,0xbeaf + ;xx + call nc,0xbeaf + push de + sub a,0xfd + rst 0x10 + ret c + reti + jp c,0xbeaf + ;xx + call c,0xbeaf + ;xx + sbc a,0xfd + rst 0x18 + ldh (0xfd),a + pop hl + ldh (c),a + ;xx + ;xx + push hl + and 0xfd + rst 0x20 + add sp,-12 + jp (hl) + ld (0xbeaf),a + ;xx + ;xx + ;xx + xor 0xfd + rst 0x28 + ldh a,(0xfd) + pop af + ldh a,(c) + di + ;xx + push af + or 0xfd + rst 0x30 + ldhl sp,-12 + ld sp,hl + ld a,(0xbeaf) + ei + ;xx + ;xx + cp 0xfd + rst 0x38 + rlc b + rlc c + rlc d + rlc e + rlc h + rlc l + rlc (hl) + rlc a + rrc b + rrc c + rrc d + rrc e + rrc h + rrc l + rrc (hl) + rrc a + rl b + rl c + rl d + rl e + rl h + rl l + rl (hl) + rl a + rr b + rr c + rr d + rr e + rr h + rr l + rr (hl) + rr a + sla b + sla c + sla d + sla e + sla h + sla l + sla (hl) + sla a + sra b + sra c + sra d + sra e + sra h + sra l + sra (hl) + sra a + swap b + swap c + swap d + swap e + swap h + swap l + swap (hl) + swap a + srl b + srl c + srl d + srl e + srl h + srl l + srl (hl) + srl a + bit 0,b + bit 0,c + bit 0,d + bit 0,e + bit 0,h + bit 0,l + bit 0,(hl) + bit 0,a + bit 1,b + bit 1,c + bit 1,d + bit 1,e + bit 1,h + bit 1,l + bit 1,(hl) + bit 1,a + bit 2,b + bit 2,c + bit 2,d + bit 2,e + bit 2,h + bit 2,l + bit 2,(hl) + bit 2,a + bit 3,b + bit 3,c + bit 3,d + bit 3,e + bit 3,h + bit 3,l + bit 3,(hl) + bit 3,a + bit 4,b + bit 4,c + bit 4,d + bit 4,e + bit 4,h + bit 4,l + bit 4,(hl) + bit 4,a + bit 5,b + bit 5,c + bit 5,d + bit 5,e + bit 5,h + bit 5,l + bit 5,(hl) + bit 5,a + bit 6,b + bit 6,c + bit 6,d + bit 6,e + bit 6,h + bit 6,l + bit 6,(hl) + bit 6,a + bit 7,b + bit 7,c + bit 7,d + bit 7,e + bit 7,h + bit 7,l + bit 7,(hl) + bit 7,a + res 0,b + res 0,c + res 0,d + res 0,e + res 0,h + res 0,l + res 0,(hl) + res 0,a + res 1,b + res 1,c + res 1,d + res 1,e + res 1,h + res 1,l + res 1,(hl) + res 1,a + res 2,b + res 2,c + res 2,d + res 2,e + res 2,h + res 2,l + res 2,(hl) + res 2,a + res 3,b + res 3,c + res 3,d + res 3,e + res 3,h + res 3,l + res 3,(hl) + res 3,a + res 4,b + res 4,c + res 4,d + res 4,e + res 4,h + res 4,l + res 4,(hl) + res 4,a + res 5,b + res 5,c + res 5,d + res 5,e + res 5,h + res 5,l + res 5,(hl) + res 5,a + res 6,b + res 6,c + res 6,d + res 6,e + res 6,h + res 6,l + res 6,(hl) + res 6,a + res 7,b + res 7,c + res 7,d + res 7,e + res 7,h + res 7,l + res 7,(hl) + res 7,a + set 0,b + set 0,c + set 0,d + set 0,e + set 0,h + set 0,l + set 0,(hl) + set 0,a + set 1,b + set 1,c + set 1,d + set 1,e + set 1,h + set 1,l + set 1,(hl) + set 1,a + set 2,b + set 2,c + set 2,d + set 2,e + set 2,h + set 2,l + set 2,(hl) + set 2,a + set 3,b + set 3,c + set 3,d + set 3,e + set 3,h + set 3,l + set 3,(hl) + set 3,a + set 4,b + set 4,c + set 4,d + set 4,e + set 4,h + set 4,l + set 4,(hl) + set 4,a + set 5,b + set 5,c + set 5,d + set 5,e + set 5,h + set 5,l + set 5,(hl) + set 5,a + set 6,b + set 6,c + set 6,d + set 6,e + set 6,h + set 6,l + set 6,(hl) + set 6,a + set 7,b + set 7,c + set 7,d + set 7,e + set 7,h + set 7,l + set 7,(hl) + set 7,a diff --git a/gas/testsuite/gas/z80/z80.exp b/gas/testsuite/gas/z80/z80.exp index 6ba13fc..31f6113 100644 --- a/gas/testsuite/gas/z80/z80.exp +++ b/gas/testsuite/gas/z80/z80.exp @@ -92,6 +92,12 @@ if [istarget z80-*-*] then { run_dump_test "ez80_adl_suf" #test for eZ80 opcode prefixes as multiple bytes before instruction run_dump_test "ez80_pref_dis" +#test for GBZ80 instruction set + run_dump_test "gbz80_all" +#test for Z80N instruction set + run_dump_test "z80n_all" +#test for Z80N push nn relocation test + run_dump_test "z80n_reloc" # test for SDCC compatibility mode run_dump_test "sdcc" # test for colonless labels diff --git a/gas/testsuite/gas/z80/z80n_all.d b/gas/testsuite/gas/z80/z80n_all.d new file mode 100644 index 0000000..3412905 --- /dev/null +++ b/gas/testsuite/gas/z80/z80n_all.d @@ -0,0 +1,1208 @@ +#as: -z80n +#objdump: -d + +.*:[ ]+file format (coff|elf32)\-z80 + + +Disassembly of section \.text: + +00000000 <\.text>: +[ ]+0:[ ]+8e[ ]+adc a,\(hl\) +[ ]+1:[ ]+dd 8e 09[ ]+adc a,\(ix\+9\) +[ ]+4:[ ]+fd 8e 09[ ]+adc a,\(iy\+9\) +[ ]+7:[ ]+ce 03[ ]+adc a,0x03 +[ ]+9:[ ]+8f[ ]+adc a,a +[ ]+a:[ ]+88[ ]+adc a,b +[ ]+b:[ ]+89[ ]+adc a,c +[ ]+c:[ ]+8a[ ]+adc a,d +[ ]+d:[ ]+8b[ ]+adc a,e +[ ]+e:[ ]+8c[ ]+adc a,h +[ ]+f:[ ]+8d[ ]+adc a,l +[ ]+10:[ ]+ed 4a[ ]+adc hl,bc +[ ]+12:[ ]+ed 5a[ ]+adc hl,de +[ ]+14:[ ]+ed 6a[ ]+adc hl,hl +[ ]+16:[ ]+ed 7a[ ]+adc hl,sp +[ ]+18:[ ]+86[ ]+add a,\(hl\) +[ ]+19:[ ]+dd 86 09[ ]+add a,\(ix\+9\) +[ ]+1c:[ ]+fd 86 09[ ]+add a,\(iy\+9\) +[ ]+1f:[ ]+c6 03[ ]+add a,0x03 +[ ]+21:[ ]+87[ ]+add a,a +[ ]+22:[ ]+80[ ]+add a,b +[ ]+23:[ ]+81[ ]+add a,c +[ ]+24:[ ]+82[ ]+add a,d +[ ]+25:[ ]+83[ ]+add a,e +[ ]+26:[ ]+84[ ]+add a,h +[ ]+27:[ ]+85[ ]+add a,l +[ ]+28:[ ]+09[ ]+add hl,bc +[ ]+29:[ ]+19[ ]+add hl,de +[ ]+2a:[ ]+29[ ]+add hl,hl +[ ]+2b:[ ]+39[ ]+add hl,sp +[ ]+2c:[ ]+dd 09[ ]+add ix,bc +[ ]+2e:[ ]+dd 19[ ]+add ix,de +[ ]+30:[ ]+dd 29[ ]+add ix,ix +[ ]+32:[ ]+dd 39[ ]+add ix,sp +[ ]+34:[ ]+fd 09[ ]+add iy,bc +[ ]+36:[ ]+fd 19[ ]+add iy,de +[ ]+38:[ ]+fd 29[ ]+add iy,iy +[ ]+3a:[ ]+fd 39[ ]+add iy,sp +[ ]+3c:[ ]+a6[ ]+and \(hl\) +[ ]+3d:[ ]+dd a6 09[ ]+and \(ix\+9\) +[ ]+40:[ ]+fd a6 09[ ]+and \(iy\+9\) +[ ]+43:[ ]+e6 03[ ]+and 0x03 +[ ]+45:[ ]+a7[ ]+and a +[ ]+46:[ ]+a0[ ]+and b +[ ]+47:[ ]+a1[ ]+and c +[ ]+48:[ ]+a2[ ]+and d +[ ]+49:[ ]+a3[ ]+and e +[ ]+4a:[ ]+a4[ ]+and h +[ ]+4b:[ ]+a5[ ]+and l +[ ]+4c:[ ]+cb 46[ ]+bit 0,\(hl\) +[ ]+4e:[ ]+dd cb 09 46[ ]+bit 0,\(ix\+9\) +[ ]+52:[ ]+fd cb 09 46[ ]+bit 0,\(iy\+9\) +[ ]+56:[ ]+cb 47[ ]+bit 0,a +[ ]+58:[ ]+cb 40[ ]+bit 0,b +[ ]+5a:[ ]+cb 41[ ]+bit 0,c +[ ]+5c:[ ]+cb 42[ ]+bit 0,d +[ ]+5e:[ ]+cb 43[ ]+bit 0,e +[ ]+60:[ ]+cb 44[ ]+bit 0,h +[ ]+62:[ ]+cb 45[ ]+bit 0,l +[ ]+64:[ ]+cb 4e[ ]+bit 1,\(hl\) +[ ]+66:[ ]+dd cb 09 4e[ ]+bit 1,\(ix\+9\) +[ ]+6a:[ ]+fd cb 09 4e[ ]+bit 1,\(iy\+9\) +[ ]+6e:[ ]+cb 4f[ ]+bit 1,a +[ ]+70:[ ]+cb 48[ ]+bit 1,b +[ ]+72:[ ]+cb 49[ ]+bit 1,c +[ ]+74:[ ]+cb 4a[ ]+bit 1,d +[ ]+76:[ ]+cb 4b[ ]+bit 1,e +[ ]+78:[ ]+cb 4c[ ]+bit 1,h +[ ]+7a:[ ]+cb 4d[ ]+bit 1,l +[ ]+7c:[ ]+cb 56[ ]+bit 2,\(hl\) +[ ]+7e:[ ]+dd cb 09 56[ ]+bit 2,\(ix\+9\) +[ ]+82:[ ]+fd cb 09 56[ ]+bit 2,\(iy\+9\) +[ ]+86:[ ]+cb 57[ ]+bit 2,a +[ ]+88:[ ]+cb 50[ ]+bit 2,b +[ ]+8a:[ ]+cb 51[ ]+bit 2,c +[ ]+8c:[ ]+cb 52[ ]+bit 2,d +[ ]+8e:[ ]+cb 53[ ]+bit 2,e +[ ]+90:[ ]+cb 54[ ]+bit 2,h +[ ]+92:[ ]+cb 55[ ]+bit 2,l +[ ]+94:[ ]+cb 5e[ ]+bit 3,\(hl\) +[ ]+96:[ ]+dd cb 09 5e[ ]+bit 3,\(ix\+9\) +[ ]+9a:[ ]+fd cb 09 5e[ ]+bit 3,\(iy\+9\) +[ ]+9e:[ ]+cb 5f[ ]+bit 3,a +[ ]+a0:[ ]+cb 58[ ]+bit 3,b +[ ]+a2:[ ]+cb 59[ ]+bit 3,c +[ ]+a4:[ ]+cb 5a[ ]+bit 3,d +[ ]+a6:[ ]+cb 5b[ ]+bit 3,e +[ ]+a8:[ ]+cb 5c[ ]+bit 3,h +[ ]+aa:[ ]+cb 5d[ ]+bit 3,l +[ ]+ac:[ ]+cb 66[ ]+bit 4,\(hl\) +[ ]+ae:[ ]+dd cb 09 66[ ]+bit 4,\(ix\+9\) +[ ]+b2:[ ]+fd cb 09 66[ ]+bit 4,\(iy\+9\) +[ ]+b6:[ ]+cb 67[ ]+bit 4,a +[ ]+b8:[ ]+cb 60[ ]+bit 4,b +[ ]+ba:[ ]+cb 61[ ]+bit 4,c +[ ]+bc:[ ]+cb 62[ ]+bit 4,d +[ ]+be:[ ]+cb 63[ ]+bit 4,e +[ ]+c0:[ ]+cb 64[ ]+bit 4,h +[ ]+c2:[ ]+cb 65[ ]+bit 4,l +[ ]+c4:[ ]+cb 6e[ ]+bit 5,\(hl\) +[ ]+c6:[ ]+dd cb 09 6e[ ]+bit 5,\(ix\+9\) +[ ]+ca:[ ]+fd cb 09 6e[ ]+bit 5,\(iy\+9\) +[ ]+ce:[ ]+cb 6f[ ]+bit 5,a +[ ]+d0:[ ]+cb 68[ ]+bit 5,b +[ ]+d2:[ ]+cb 69[ ]+bit 5,c +[ ]+d4:[ ]+cb 6a[ ]+bit 5,d +[ ]+d6:[ ]+cb 6b[ ]+bit 5,e +[ ]+d8:[ ]+cb 6c[ ]+bit 5,h +[ ]+da:[ ]+cb 6d[ ]+bit 5,l +[ ]+dc:[ ]+cb 76[ ]+bit 6,\(hl\) +[ ]+de:[ ]+dd cb 09 76[ ]+bit 6,\(ix\+9\) +[ ]+e2:[ ]+fd cb 09 76[ ]+bit 6,\(iy\+9\) +[ ]+e6:[ ]+cb 77[ ]+bit 6,a +[ ]+e8:[ ]+cb 70[ ]+bit 6,b +[ ]+ea:[ ]+cb 71[ ]+bit 6,c +[ ]+ec:[ ]+cb 72[ ]+bit 6,d +[ ]+ee:[ ]+cb 73[ ]+bit 6,e +[ ]+f0:[ ]+cb 74[ ]+bit 6,h +[ ]+f2:[ ]+cb 75[ ]+bit 6,l +[ ]+f4:[ ]+cb 7e[ ]+bit 7,\(hl\) +[ ]+f6:[ ]+dd cb 09 7e[ ]+bit 7,\(ix\+9\) +[ ]+fa:[ ]+fd cb 09 7e[ ]+bit 7,\(iy\+9\) +[ ]+fe:[ ]+cb 7f[ ]+bit 7,a +[ ]+100:[ ]+cb 78[ ]+bit 7,b +[ ]+102:[ ]+cb 79[ ]+bit 7,c +[ ]+104:[ ]+cb 7a[ ]+bit 7,d +[ ]+106:[ ]+cb 7b[ ]+bit 7,e +[ ]+108:[ ]+cb 7c[ ]+bit 7,h +[ ]+10a:[ ]+cb 7d[ ]+bit 7,l +[ ]+10c:[ ]+cd 34 12[ ]+call 0x1234 +[ ]+10f:[ ]+dc 34 12[ ]+call c,0x1234 +[ ]+112:[ ]+fc 34 12[ ]+call m,0x1234 +[ ]+115:[ ]+d4 34 12[ ]+call nc,0x1234 +[ ]+118:[ ]+c4 34 12[ ]+call nz,0x1234 +[ ]+11b:[ ]+f4 34 12[ ]+call p,0x1234 +[ ]+11e:[ ]+ec 34 12[ ]+call pe,0x1234 +[ ]+121:[ ]+e4 34 12[ ]+call po,0x1234 +[ ]+124:[ ]+cc 34 12[ ]+call z,0x1234 +[ ]+127:[ ]+3f[ ]+ccf +[ ]+128:[ ]+be[ ]+cp \(hl\) +[ ]+129:[ ]+dd be 09[ ]+cp \(ix\+9\) +[ ]+12c:[ ]+fd be 09[ ]+cp \(iy\+9\) +[ ]+12f:[ ]+fe 03[ ]+cp 0x03 +[ ]+131:[ ]+bf[ ]+cp a +[ ]+132:[ ]+b8[ ]+cp b +[ ]+133:[ ]+b9[ ]+cp c +[ ]+134:[ ]+ba[ ]+cp d +[ ]+135:[ ]+bb[ ]+cp e +[ ]+136:[ ]+bc[ ]+cp h +[ ]+137:[ ]+bd[ ]+cp l +[ ]+138:[ ]+ed a9[ ]+cpd +[ ]+13a:[ ]+ed b9[ ]+cpdr +[ ]+13c:[ ]+ed a1[ ]+cpi +[ ]+13e:[ ]+ed b1[ ]+cpir +[ ]+140:[ ]+2f[ ]+cpl +[ ]+141:[ ]+27[ ]+daa +[ ]+142:[ ]+35[ ]+dec \(hl\) +[ ]+143:[ ]+dd 35 09[ ]+dec \(ix\+9\) +[ ]+146:[ ]+fd 35 09[ ]+dec \(iy\+9\) +[ ]+149:[ ]+3d[ ]+dec a +[ ]+14a:[ ]+05[ ]+dec b +[ ]+14b:[ ]+0b[ ]+dec bc +[ ]+14c:[ ]+0d[ ]+dec c +[ ]+14d:[ ]+15[ ]+dec d +[ ]+14e:[ ]+1b[ ]+dec de +[ ]+14f:[ ]+1d[ ]+dec e +[ ]+150:[ ]+25[ ]+dec h +[ ]+151:[ ]+2b[ ]+dec hl +[ ]+152:[ ]+dd 2b[ ]+dec ix +[ ]+154:[ ]+fd 2b[ ]+dec iy +[ ]+156:[ ]+2d[ ]+dec l +[ ]+157:[ ]+3b[ ]+dec sp +[ ]+158:[ ]+f3[ ]+di +[ ]+159:[ ]+10 05[ ]+djnz 0x0160 +[ ]+15b:[ ]+fb[ ]+ei +[ ]+15c:[ ]+e3[ ]+ex \(sp\),hl +[ ]+15d:[ ]+dd e3[ ]+ex \(sp\),ix +[ ]+15f:[ ]+fd e3[ ]+ex \(sp\),iy +[ ]+161:[ ]+08[ ]+ex af,af' +[ ]+162:[ ]+eb[ ]+ex de,hl +[ ]+163:[ ]+d9[ ]+exx +[ ]+164:[ ]+76[ ]+halt +[ ]+165:[ ]+ed 46[ ]+im 0 +[ ]+167:[ ]+ed 56[ ]+im 1 +[ ]+169:[ ]+ed 5e[ ]+im 2 +[ ]+16b:[ ]+ed 78[ ]+in a,\(c\) +[ ]+16d:[ ]+db 03[ ]+in a,\(0x03\) +[ ]+16f:[ ]+ed 40[ ]+in b,\(c\) +[ ]+171:[ ]+ed 48[ ]+in c,\(c\) +[ ]+173:[ ]+ed 50[ ]+in d,\(c\) +[ ]+175:[ ]+ed 58[ ]+in e,\(c\) +[ ]+177:[ ]+ed 60[ ]+in h,\(c\) +[ ]+179:[ ]+ed 68[ ]+in l,\(c\) +[ ]+17b:[ ]+34[ ]+inc \(hl\) +[ ]+17c:[ ]+dd 34 09[ ]+inc \(ix\+9\) +[ ]+17f:[ ]+fd 34 09[ ]+inc \(iy\+9\) +[ ]+182:[ ]+3c[ ]+inc a +[ ]+183:[ ]+04[ ]+inc b +[ ]+184:[ ]+03[ ]+inc bc +[ ]+185:[ ]+0c[ ]+inc c +[ ]+186:[ ]+14[ ]+inc d +[ ]+187:[ ]+13[ ]+inc de +[ ]+188:[ ]+1c[ ]+inc e +[ ]+189:[ ]+24[ ]+inc h +[ ]+18a:[ ]+23[ ]+inc hl +[ ]+18b:[ ]+dd 23[ ]+inc ix +[ ]+18d:[ ]+fd 23[ ]+inc iy +[ ]+18f:[ ]+2c[ ]+inc l +[ ]+190:[ ]+33[ ]+inc sp +[ ]+191:[ ]+ed aa[ ]+ind +[ ]+193:[ ]+ed ba[ ]+indr +[ ]+195:[ ]+ed a2[ ]+ini +[ ]+197:[ ]+ed b2[ ]+inir +[ ]+199:[ ]+e9[ ]+jp \(hl\) +[ ]+19a:[ ]+dd e9[ ]+jp \(ix\) +[ ]+19c:[ ]+fd e9[ ]+jp \(iy\) +[ ]+19e:[ ]+c3 34 12[ ]+jp 0x1234 +[ ]+1a1:[ ]+da 34 12[ ]+jp c,0x1234 +[ ]+1a4:[ ]+fa 34 12[ ]+jp m,0x1234 +[ ]+1a7:[ ]+d2 34 12[ ]+jp nc,0x1234 +[ ]+1aa:[ ]+c2 34 12[ ]+jp nz,0x1234 +[ ]+1ad:[ ]+f2 34 12[ ]+jp p,0x1234 +[ ]+1b0:[ ]+ea 34 12[ ]+jp pe,0x1234 +[ ]+1b3:[ ]+e2 34 12[ ]+jp po,0x1234 +[ ]+1b6:[ ]+ca 34 12[ ]+jp z,0x1234 +[ ]+1b9:[ ]+18 05[ ]+jr 0x01c0 +[ ]+1bb:[ ]+38 05[ ]+jr c,0x01c2 +[ ]+1bd:[ ]+30 05[ ]+jr nc,0x01c4 +[ ]+1bf:[ ]+20 05[ ]+jr nz,0x01c6 +[ ]+1c1:[ ]+28 05[ ]+jr z,0x01c8 +[ ]+1c3:[ ]+32 34 12[ ]+ld \(0x1234\),a +[ ]+1c6:[ ]+ed 43 34 12[ ]+ld \(0x1234\),bc +[ ]+1ca:[ ]+ed 53 34 12[ ]+ld \(0x1234\),de +[ ]+1ce:[ ]+22 34 12[ ]+ld \(0x1234\),hl +[ ]+1d1:[ ]+dd 22 34 12[ ]+ld \(0x1234\),ix +[ ]+1d5:[ ]+fd 22 34 12[ ]+ld \(0x1234\),iy +[ ]+1d9:[ ]+ed 73 34 12[ ]+ld \(0x1234\),sp +[ ]+1dd:[ ]+02[ ]+ld \(bc\),a +[ ]+1de:[ ]+12[ ]+ld \(de\),a +[ ]+1df:[ ]+36 03[ ]+ld \(hl\),0x03 +[ ]+1e1:[ ]+77[ ]+ld \(hl\),a +[ ]+1e2:[ ]+70[ ]+ld \(hl\),b +[ ]+1e3:[ ]+71[ ]+ld \(hl\),c +[ ]+1e4:[ ]+72[ ]+ld \(hl\),d +[ ]+1e5:[ ]+73[ ]+ld \(hl\),e +[ ]+1e6:[ ]+74[ ]+ld \(hl\),h +[ ]+1e7:[ ]+75[ ]+ld \(hl\),l +[ ]+1e8:[ ]+dd 36 09 03[ ]+ld \(ix\+9\),0x03 +[ ]+1ec:[ ]+dd 77 09[ ]+ld \(ix\+9\),a +[ ]+1ef:[ ]+dd 70 09[ ]+ld \(ix\+9\),b +[ ]+1f2:[ ]+dd 71 09[ ]+ld \(ix\+9\),c +[ ]+1f5:[ ]+dd 72 09[ ]+ld \(ix\+9\),d +[ ]+1f8:[ ]+dd 73 09[ ]+ld \(ix\+9\),e +[ ]+1fb:[ ]+dd 74 09[ ]+ld \(ix\+9\),h +[ ]+1fe:[ ]+dd 75 09[ ]+ld \(ix\+9\),l +[ ]+201:[ ]+fd 36 09 03[ ]+ld \(iy\+9\),0x03 +[ ]+205:[ ]+fd 77 09[ ]+ld \(iy\+9\),a +[ ]+208:[ ]+fd 70 09[ ]+ld \(iy\+9\),b +[ ]+20b:[ ]+fd 71 09[ ]+ld \(iy\+9\),c +[ ]+20e:[ ]+fd 72 09[ ]+ld \(iy\+9\),d +[ ]+211:[ ]+fd 73 09[ ]+ld \(iy\+9\),e +[ ]+214:[ ]+fd 74 09[ ]+ld \(iy\+9\),h +[ ]+217:[ ]+fd 75 09[ ]+ld \(iy\+9\),l +[ ]+21a:[ ]+3a 34 12[ ]+ld a,\(0x1234\) +[ ]+21d:[ ]+0a[ ]+ld a,\(bc\) +[ ]+21e:[ ]+1a[ ]+ld a,\(de\) +[ ]+21f:[ ]+7e[ ]+ld a,\(hl\) +[ ]+220:[ ]+dd 7e 09[ ]+ld a,\(ix\+9\) +[ ]+223:[ ]+fd 7e 09[ ]+ld a,\(iy\+9\) +[ ]+226:[ ]+3e 03[ ]+ld a,0x03 +[ ]+228:[ ]+7f[ ]+ld a,a +[ ]+229:[ ]+78[ ]+ld a,b +[ ]+22a:[ ]+79[ ]+ld a,c +[ ]+22b:[ ]+7a[ ]+ld a,d +[ ]+22c:[ ]+7b[ ]+ld a,e +[ ]+22d:[ ]+7c[ ]+ld a,h +[ ]+22e:[ ]+ed 57[ ]+ld a,i +[ ]+230:[ ]+7d[ ]+ld a,l +[ ]+231:[ ]+ed 5f[ ]+ld a,r +[ ]+233:[ ]+46[ ]+ld b,\(hl\) +[ ]+234:[ ]+dd 46 09[ ]+ld b,\(ix\+9\) +[ ]+237:[ ]+fd 46 09[ ]+ld b,\(iy\+9\) +[ ]+23a:[ ]+06 03[ ]+ld b,0x03 +[ ]+23c:[ ]+47[ ]+ld b,a +[ ]+23d:[ ]+40[ ]+ld b,b +[ ]+23e:[ ]+41[ ]+ld b,c +[ ]+23f:[ ]+42[ ]+ld b,d +[ ]+240:[ ]+43[ ]+ld b,e +[ ]+241:[ ]+44[ ]+ld b,h +[ ]+242:[ ]+45[ ]+ld b,l +[ ]+243:[ ]+ed 4b 34 12[ ]+ld bc,\(0x1234\) +[ ]+247:[ ]+01 34 12[ ]+ld bc,0x1234 +[ ]+24a:[ ]+4e[ ]+ld c,\(hl\) +[ ]+24b:[ ]+dd 4e 09[ ]+ld c,\(ix\+9\) +[ ]+24e:[ ]+fd 4e 09[ ]+ld c,\(iy\+9\) +[ ]+251:[ ]+0e 03[ ]+ld c,0x03 +[ ]+253:[ ]+4f[ ]+ld c,a +[ ]+254:[ ]+48[ ]+ld c,b +[ ]+255:[ ]+49[ ]+ld c,c +[ ]+256:[ ]+4a[ ]+ld c,d +[ ]+257:[ ]+4b[ ]+ld c,e +[ ]+258:[ ]+4c[ ]+ld c,h +[ ]+259:[ ]+4d[ ]+ld c,l +[ ]+25a:[ ]+56[ ]+ld d,\(hl\) +[ ]+25b:[ ]+dd 56 09[ ]+ld d,\(ix\+9\) +[ ]+25e:[ ]+fd 56 09[ ]+ld d,\(iy\+9\) +[ ]+261:[ ]+16 03[ ]+ld d,0x03 +[ ]+263:[ ]+57[ ]+ld d,a +[ ]+264:[ ]+50[ ]+ld d,b +[ ]+265:[ ]+51[ ]+ld d,c +[ ]+266:[ ]+52[ ]+ld d,d +[ ]+267:[ ]+53[ ]+ld d,e +[ ]+268:[ ]+54[ ]+ld d,h +[ ]+269:[ ]+55[ ]+ld d,l +[ ]+26a:[ ]+ed 5b 34 12[ ]+ld de,\(0x1234\) +[ ]+26e:[ ]+11 34 12[ ]+ld de,0x1234 +[ ]+271:[ ]+5e[ ]+ld e,\(hl\) +[ ]+272:[ ]+dd 5e 09[ ]+ld e,\(ix\+9\) +[ ]+275:[ ]+fd 5e 09[ ]+ld e,\(iy\+9\) +[ ]+278:[ ]+1e 03[ ]+ld e,0x03 +[ ]+27a:[ ]+5f[ ]+ld e,a +[ ]+27b:[ ]+58[ ]+ld e,b +[ ]+27c:[ ]+59[ ]+ld e,c +[ ]+27d:[ ]+5a[ ]+ld e,d +[ ]+27e:[ ]+5b[ ]+ld e,e +[ ]+27f:[ ]+5c[ ]+ld e,h +[ ]+280:[ ]+5d[ ]+ld e,l +[ ]+281:[ ]+66[ ]+ld h,\(hl\) +[ ]+282:[ ]+dd 66 09[ ]+ld h,\(ix\+9\) +[ ]+285:[ ]+fd 66 09[ ]+ld h,\(iy\+9\) +[ ]+288:[ ]+26 03[ ]+ld h,0x03 +[ ]+28a:[ ]+67[ ]+ld h,a +[ ]+28b:[ ]+60[ ]+ld h,b +[ ]+28c:[ ]+61[ ]+ld h,c +[ ]+28d:[ ]+62[ ]+ld h,d +[ ]+28e:[ ]+63[ ]+ld h,e +[ ]+28f:[ ]+64[ ]+ld h,h +[ ]+290:[ ]+65[ ]+ld h,l +[ ]+291:[ ]+2a 34 12[ ]+ld hl,\(0x1234\) +[ ]+294:[ ]+21 34 12[ ]+ld hl,0x1234 +[ ]+297:[ ]+ed 47[ ]+ld i,a +[ ]+299:[ ]+dd 2a 34 12[ ]+ld ix,\(0x1234\) +[ ]+29d:[ ]+dd 21 34 12[ ]+ld ix,0x1234 +[ ]+2a1:[ ]+fd 2a 34 12[ ]+ld iy,\(0x1234\) +[ ]+2a5:[ ]+fd 21 34 12[ ]+ld iy,0x1234 +[ ]+2a9:[ ]+6e[ ]+ld l,\(hl\) +[ ]+2aa:[ ]+dd 6e 09[ ]+ld l,\(ix\+9\) +[ ]+2ad:[ ]+fd 6e 09[ ]+ld l,\(iy\+9\) +[ ]+2b0:[ ]+2e 03[ ]+ld l,0x03 +[ ]+2b2:[ ]+6f[ ]+ld l,a +[ ]+2b3:[ ]+68[ ]+ld l,b +[ ]+2b4:[ ]+69[ ]+ld l,c +[ ]+2b5:[ ]+6a[ ]+ld l,d +[ ]+2b6:[ ]+6b[ ]+ld l,e +[ ]+2b7:[ ]+6c[ ]+ld l,h +[ ]+2b8:[ ]+6d[ ]+ld l,l +[ ]+2b9:[ ]+ed 4f[ ]+ld r,a +[ ]+2bb:[ ]+ed 7b 34 12[ ]+ld sp,\(0x1234\) +[ ]+2bf:[ ]+31 34 12[ ]+ld sp,0x1234 +[ ]+2c2:[ ]+f9[ ]+ld sp,hl +[ ]+2c3:[ ]+dd f9[ ]+ld sp,ix +[ ]+2c5:[ ]+fd f9[ ]+ld sp,iy +[ ]+2c7:[ ]+ed a8[ ]+ldd +[ ]+2c9:[ ]+ed b8[ ]+lddr +[ ]+2cb:[ ]+ed a0[ ]+ldi +[ ]+2cd:[ ]+ed b0[ ]+ldir +[ ]+2cf:[ ]+ed 44[ ]+neg +[ ]+2d1:[ ]+00[ ]+nop +[ ]+2d2:[ ]+b6[ ]+or \(hl\) +[ ]+2d3:[ ]+dd b6 09[ ]+or \(ix\+9\) +[ ]+2d6:[ ]+fd b6 09[ ]+or \(iy\+9\) +[ ]+2d9:[ ]+f6 03[ ]+or 0x03 +[ ]+2db:[ ]+b7[ ]+or a +[ ]+2dc:[ ]+b0[ ]+or b +[ ]+2dd:[ ]+b1[ ]+or c +[ ]+2de:[ ]+b2[ ]+or d +[ ]+2df:[ ]+b3[ ]+or e +[ ]+2e0:[ ]+b4[ ]+or h +[ ]+2e1:[ ]+b5[ ]+or l +[ ]+2e2:[ ]+ed bb[ ]+otdr +[ ]+2e4:[ ]+ed b3[ ]+otir +[ ]+2e6:[ ]+ed 79[ ]+out \(c\),a +[ ]+2e8:[ ]+ed 41[ ]+out \(c\),b +[ ]+2ea:[ ]+ed 49[ ]+out \(c\),c +[ ]+2ec:[ ]+ed 51[ ]+out \(c\),d +[ ]+2ee:[ ]+ed 59[ ]+out \(c\),e +[ ]+2f0:[ ]+ed 61[ ]+out \(c\),h +[ ]+2f2:[ ]+ed 69[ ]+out \(c\),l +[ ]+2f4:[ ]+d3 03[ ]+out \(0x03\),a +[ ]+2f6:[ ]+ed ab[ ]+outd +[ ]+2f8:[ ]+ed a3[ ]+outi +[ ]+2fa:[ ]+f1[ ]+pop af +[ ]+2fb:[ ]+c1[ ]+pop bc +[ ]+2fc:[ ]+d1[ ]+pop de +[ ]+2fd:[ ]+e1[ ]+pop hl +[ ]+2fe:[ ]+dd e1[ ]+pop ix +[ ]+300:[ ]+fd e1[ ]+pop iy +[ ]+302:[ ]+f5[ ]+push af +[ ]+303:[ ]+c5[ ]+push bc +[ ]+304:[ ]+d5[ ]+push de +[ ]+305:[ ]+e5[ ]+push hl +[ ]+306:[ ]+dd e5[ ]+push ix +[ ]+308:[ ]+fd e5[ ]+push iy +[ ]+30a:[ ]+cb 86[ ]+res 0,\(hl\) +[ ]+30c:[ ]+dd cb 09 86[ ]+res 0,\(ix\+9\) +[ ]+310:[ ]+fd cb 09 86[ ]+res 0,\(iy\+9\) +[ ]+314:[ ]+cb 87[ ]+res 0,a +[ ]+316:[ ]+cb 80[ ]+res 0,b +[ ]+318:[ ]+cb 81[ ]+res 0,c +[ ]+31a:[ ]+cb 82[ ]+res 0,d +[ ]+31c:[ ]+cb 83[ ]+res 0,e +[ ]+31e:[ ]+cb 84[ ]+res 0,h +[ ]+320:[ ]+cb 85[ ]+res 0,l +[ ]+322:[ ]+cb 8e[ ]+res 1,\(hl\) +[ ]+324:[ ]+dd cb 09 8e[ ]+res 1,\(ix\+9\) +[ ]+328:[ ]+fd cb 09 8e[ ]+res 1,\(iy\+9\) +[ ]+32c:[ ]+cb 8f[ ]+res 1,a +[ ]+32e:[ ]+cb 88[ ]+res 1,b +[ ]+330:[ ]+cb 89[ ]+res 1,c +[ ]+332:[ ]+cb 8a[ ]+res 1,d +[ ]+334:[ ]+cb 8b[ ]+res 1,e +[ ]+336:[ ]+cb 8c[ ]+res 1,h +[ ]+338:[ ]+cb 8d[ ]+res 1,l +[ ]+33a:[ ]+cb 96[ ]+res 2,\(hl\) +[ ]+33c:[ ]+dd cb 09 96[ ]+res 2,\(ix\+9\) +[ ]+340:[ ]+fd cb 09 96[ ]+res 2,\(iy\+9\) +[ ]+344:[ ]+cb 97[ ]+res 2,a +[ ]+346:[ ]+cb 90[ ]+res 2,b +[ ]+348:[ ]+cb 91[ ]+res 2,c +[ ]+34a:[ ]+cb 92[ ]+res 2,d +[ ]+34c:[ ]+cb 93[ ]+res 2,e +[ ]+34e:[ ]+cb 94[ ]+res 2,h +[ ]+350:[ ]+cb 95[ ]+res 2,l +[ ]+352:[ ]+cb 9e[ ]+res 3,\(hl\) +[ ]+354:[ ]+dd cb 09 9e[ ]+res 3,\(ix\+9\) +[ ]+358:[ ]+fd cb 09 9e[ ]+res 3,\(iy\+9\) +[ ]+35c:[ ]+cb 9f[ ]+res 3,a +[ ]+35e:[ ]+cb 98[ ]+res 3,b +[ ]+360:[ ]+cb 99[ ]+res 3,c +[ ]+362:[ ]+cb 9a[ ]+res 3,d +[ ]+364:[ ]+cb 9b[ ]+res 3,e +[ ]+366:[ ]+cb 9c[ ]+res 3,h +[ ]+368:[ ]+cb 9d[ ]+res 3,l +[ ]+36a:[ ]+cb a6[ ]+res 4,\(hl\) +[ ]+36c:[ ]+dd cb 09 a6[ ]+res 4,\(ix\+9\) +[ ]+370:[ ]+fd cb 09 a6[ ]+res 4,\(iy\+9\) +[ ]+374:[ ]+cb a7[ ]+res 4,a +[ ]+376:[ ]+cb a0[ ]+res 4,b +[ ]+378:[ ]+cb a1[ ]+res 4,c +[ ]+37a:[ ]+cb a2[ ]+res 4,d +[ ]+37c:[ ]+cb a3[ ]+res 4,e +[ ]+37e:[ ]+cb a4[ ]+res 4,h +[ ]+380:[ ]+cb a5[ ]+res 4,l +[ ]+382:[ ]+cb ae[ ]+res 5,\(hl\) +[ ]+384:[ ]+dd cb 09 ae[ ]+res 5,\(ix\+9\) +[ ]+388:[ ]+fd cb 09 ae[ ]+res 5,\(iy\+9\) +[ ]+38c:[ ]+cb af[ ]+res 5,a +[ ]+38e:[ ]+cb a8[ ]+res 5,b +[ ]+390:[ ]+cb a9[ ]+res 5,c +[ ]+392:[ ]+cb aa[ ]+res 5,d +[ ]+394:[ ]+cb ab[ ]+res 5,e +[ ]+396:[ ]+cb ac[ ]+res 5,h +[ ]+398:[ ]+cb ad[ ]+res 5,l +[ ]+39a:[ ]+cb b6[ ]+res 6,\(hl\) +[ ]+39c:[ ]+dd cb 09 b6[ ]+res 6,\(ix\+9\) +[ ]+3a0:[ ]+fd cb 09 b6[ ]+res 6,\(iy\+9\) +[ ]+3a4:[ ]+cb b7[ ]+res 6,a +[ ]+3a6:[ ]+cb b0[ ]+res 6,b +[ ]+3a8:[ ]+cb b1[ ]+res 6,c +[ ]+3aa:[ ]+cb b2[ ]+res 6,d +[ ]+3ac:[ ]+cb b3[ ]+res 6,e +[ ]+3ae:[ ]+cb b4[ ]+res 6,h +[ ]+3b0:[ ]+cb b5[ ]+res 6,l +[ ]+3b2:[ ]+cb be[ ]+res 7,\(hl\) +[ ]+3b4:[ ]+dd cb 09 be[ ]+res 7,\(ix\+9\) +[ ]+3b8:[ ]+fd cb 09 be[ ]+res 7,\(iy\+9\) +[ ]+3bc:[ ]+cb bf[ ]+res 7,a +[ ]+3be:[ ]+cb b8[ ]+res 7,b +[ ]+3c0:[ ]+cb b9[ ]+res 7,c +[ ]+3c2:[ ]+cb ba[ ]+res 7,d +[ ]+3c4:[ ]+cb bb[ ]+res 7,e +[ ]+3c6:[ ]+cb bc[ ]+res 7,h +[ ]+3c8:[ ]+cb bd[ ]+res 7,l +[ ]+3ca:[ ]+c9[ ]+ret +[ ]+3cb:[ ]+d8[ ]+ret c +[ ]+3cc:[ ]+f8[ ]+ret m +[ ]+3cd:[ ]+d0[ ]+ret nc +[ ]+3ce:[ ]+c0[ ]+ret nz +[ ]+3cf:[ ]+f0[ ]+ret p +[ ]+3d0:[ ]+e8[ ]+ret pe +[ ]+3d1:[ ]+e0[ ]+ret po +[ ]+3d2:[ ]+c8[ ]+ret z +[ ]+3d3:[ ]+ed 4d[ ]+reti +[ ]+3d5:[ ]+ed 45[ ]+retn +[ ]+3d7:[ ]+cb 16[ ]+rl \(hl\) +[ ]+3d9:[ ]+dd cb 09 16[ ]+rl \(ix\+9\) +[ ]+3dd:[ ]+fd cb 09 16[ ]+rl \(iy\+9\) +[ ]+3e1:[ ]+cb 17[ ]+rl a +[ ]+3e3:[ ]+cb 10[ ]+rl b +[ ]+3e5:[ ]+cb 11[ ]+rl c +[ ]+3e7:[ ]+cb 12[ ]+rl d +[ ]+3e9:[ ]+cb 13[ ]+rl e +[ ]+3eb:[ ]+cb 14[ ]+rl h +[ ]+3ed:[ ]+cb 15[ ]+rl l +[ ]+3ef:[ ]+17[ ]+rla +[ ]+3f0:[ ]+cb 06[ ]+rlc \(hl\) +[ ]+3f2:[ ]+dd cb 09 06[ ]+rlc \(ix\+9\) +[ ]+3f6:[ ]+fd cb 09 06[ ]+rlc \(iy\+9\) +[ ]+3fa:[ ]+cb 07[ ]+rlc a +[ ]+3fc:[ ]+cb 00[ ]+rlc b +[ ]+3fe:[ ]+cb 01[ ]+rlc c +[ ]+400:[ ]+cb 02[ ]+rlc d +[ ]+402:[ ]+cb 03[ ]+rlc e +[ ]+404:[ ]+cb 04[ ]+rlc h +[ ]+406:[ ]+cb 05[ ]+rlc l +[ ]+408:[ ]+07[ ]+rlca +[ ]+409:[ ]+ed 6f[ ]+rld +[ ]+40b:[ ]+cb 1e[ ]+rr \(hl\) +[ ]+40d:[ ]+dd cb 09 1e[ ]+rr \(ix\+9\) +[ ]+411:[ ]+fd cb 09 1e[ ]+rr \(iy\+9\) +[ ]+415:[ ]+cb 1f[ ]+rr a +[ ]+417:[ ]+cb 18[ ]+rr b +[ ]+419:[ ]+cb 19[ ]+rr c +[ ]+41b:[ ]+cb 1a[ ]+rr d +[ ]+41d:[ ]+cb 1b[ ]+rr e +[ ]+41f:[ ]+cb 1c[ ]+rr h +[ ]+421:[ ]+cb 1d[ ]+rr l +[ ]+423:[ ]+1f[ ]+rra +[ ]+424:[ ]+cb 0e[ ]+rrc \(hl\) +[ ]+426:[ ]+dd cb 09 0e[ ]+rrc \(ix\+9\) +[ ]+42a:[ ]+fd cb 09 0e[ ]+rrc \(iy\+9\) +[ ]+42e:[ ]+cb 0f[ ]+rrc a +[ ]+430:[ ]+cb 08[ ]+rrc b +[ ]+432:[ ]+cb 09[ ]+rrc c +[ ]+434:[ ]+cb 0a[ ]+rrc d +[ ]+436:[ ]+cb 0b[ ]+rrc e +[ ]+438:[ ]+cb 0c[ ]+rrc h +[ ]+43a:[ ]+cb 0d[ ]+rrc l +[ ]+43c:[ ]+0f[ ]+rrca +[ ]+43d:[ ]+ed 67[ ]+rrd +[ ]+43f:[ ]+c7[ ]+rst 0x00 +[ ]+440:[ ]+cf[ ]+rst 0x08 +[ ]+441:[ ]+d7[ ]+rst 0x10 +[ ]+442:[ ]+df[ ]+rst 0x18 +[ ]+443:[ ]+e7[ ]+rst 0x20 +[ ]+444:[ ]+ef[ ]+rst 0x28 +[ ]+445:[ ]+f7[ ]+rst 0x30 +[ ]+446:[ ]+ff[ ]+rst 0x38 +[ ]+447:[ ]+9e[ ]+sbc a,\(hl\) +[ ]+448:[ ]+dd 9e 09[ ]+sbc a,\(ix\+9\) +[ ]+44b:[ ]+fd 9e 09[ ]+sbc a,\(iy\+9\) +[ ]+44e:[ ]+de 03[ ]+sbc a,0x03 +[ ]+450:[ ]+9f[ ]+sbc a,a +[ ]+451:[ ]+98[ ]+sbc a,b +[ ]+452:[ ]+99[ ]+sbc a,c +[ ]+453:[ ]+9a[ ]+sbc a,d +[ ]+454:[ ]+9b[ ]+sbc a,e +[ ]+455:[ ]+9c[ ]+sbc a,h +[ ]+456:[ ]+9d[ ]+sbc a,l +[ ]+457:[ ]+ed 42[ ]+sbc hl,bc +[ ]+459:[ ]+ed 52[ ]+sbc hl,de +[ ]+45b:[ ]+ed 62[ ]+sbc hl,hl +[ ]+45d:[ ]+ed 72[ ]+sbc hl,sp +[ ]+45f:[ ]+37[ ]+scf +[ ]+460:[ ]+cb c6[ ]+set 0,\(hl\) +[ ]+462:[ ]+dd cb 09 c6[ ]+set 0,\(ix\+9\) +[ ]+466:[ ]+fd cb 09 c6[ ]+set 0,\(iy\+9\) +[ ]+46a:[ ]+cb c7[ ]+set 0,a +[ ]+46c:[ ]+cb c0[ ]+set 0,b +[ ]+46e:[ ]+cb c1[ ]+set 0,c +[ ]+470:[ ]+cb c2[ ]+set 0,d +[ ]+472:[ ]+cb c3[ ]+set 0,e +[ ]+474:[ ]+cb c4[ ]+set 0,h +[ ]+476:[ ]+cb c5[ ]+set 0,l +[ ]+478:[ ]+cb ce[ ]+set 1,\(hl\) +[ ]+47a:[ ]+dd cb 09 ce[ ]+set 1,\(ix\+9\) +[ ]+47e:[ ]+fd cb 09 ce[ ]+set 1,\(iy\+9\) +[ ]+482:[ ]+cb cf[ ]+set 1,a +[ ]+484:[ ]+cb c8[ ]+set 1,b +[ ]+486:[ ]+cb c9[ ]+set 1,c +[ ]+488:[ ]+cb ca[ ]+set 1,d +[ ]+48a:[ ]+cb cb[ ]+set 1,e +[ ]+48c:[ ]+cb cc[ ]+set 1,h +[ ]+48e:[ ]+cb cd[ ]+set 1,l +[ ]+490:[ ]+cb d6[ ]+set 2,\(hl\) +[ ]+492:[ ]+dd cb 09 d6[ ]+set 2,\(ix\+9\) +[ ]+496:[ ]+fd cb 09 d6[ ]+set 2,\(iy\+9\) +[ ]+49a:[ ]+cb d7[ ]+set 2,a +[ ]+49c:[ ]+cb d0[ ]+set 2,b +[ ]+49e:[ ]+cb d1[ ]+set 2,c +[ ]+4a0:[ ]+cb d2[ ]+set 2,d +[ ]+4a2:[ ]+cb d3[ ]+set 2,e +[ ]+4a4:[ ]+cb d4[ ]+set 2,h +[ ]+4a6:[ ]+cb d5[ ]+set 2,l +[ ]+4a8:[ ]+cb de[ ]+set 3,\(hl\) +[ ]+4aa:[ ]+dd cb 09 de[ ]+set 3,\(ix\+9\) +[ ]+4ae:[ ]+fd cb 09 de[ ]+set 3,\(iy\+9\) +[ ]+4b2:[ ]+cb df[ ]+set 3,a +[ ]+4b4:[ ]+cb d8[ ]+set 3,b +[ ]+4b6:[ ]+cb d9[ ]+set 3,c +[ ]+4b8:[ ]+cb da[ ]+set 3,d +[ ]+4ba:[ ]+cb db[ ]+set 3,e +[ ]+4bc:[ ]+cb dc[ ]+set 3,h +[ ]+4be:[ ]+cb dd[ ]+set 3,l +[ ]+4c0:[ ]+cb e6[ ]+set 4,\(hl\) +[ ]+4c2:[ ]+dd cb 09 e6[ ]+set 4,\(ix\+9\) +[ ]+4c6:[ ]+fd cb 09 e6[ ]+set 4,\(iy\+9\) +[ ]+4ca:[ ]+cb e7[ ]+set 4,a +[ ]+4cc:[ ]+cb e0[ ]+set 4,b +[ ]+4ce:[ ]+cb e1[ ]+set 4,c +[ ]+4d0:[ ]+cb e2[ ]+set 4,d +[ ]+4d2:[ ]+cb e3[ ]+set 4,e +[ ]+4d4:[ ]+cb e4[ ]+set 4,h +[ ]+4d6:[ ]+cb e5[ ]+set 4,l +[ ]+4d8:[ ]+cb ee[ ]+set 5,\(hl\) +[ ]+4da:[ ]+dd cb 09 ee[ ]+set 5,\(ix\+9\) +[ ]+4de:[ ]+fd cb 09 ee[ ]+set 5,\(iy\+9\) +[ ]+4e2:[ ]+cb ef[ ]+set 5,a +[ ]+4e4:[ ]+cb e8[ ]+set 5,b +[ ]+4e6:[ ]+cb e9[ ]+set 5,c +[ ]+4e8:[ ]+cb ea[ ]+set 5,d +[ ]+4ea:[ ]+cb eb[ ]+set 5,e +[ ]+4ec:[ ]+cb ec[ ]+set 5,h +[ ]+4ee:[ ]+cb ed[ ]+set 5,l +[ ]+4f0:[ ]+cb f6[ ]+set 6,\(hl\) +[ ]+4f2:[ ]+dd cb 09 f6[ ]+set 6,\(ix\+9\) +[ ]+4f6:[ ]+fd cb 09 f6[ ]+set 6,\(iy\+9\) +[ ]+4fa:[ ]+cb f7[ ]+set 6,a +[ ]+4fc:[ ]+cb f0[ ]+set 6,b +[ ]+4fe:[ ]+cb f1[ ]+set 6,c +[ ]+500:[ ]+cb f2[ ]+set 6,d +[ ]+502:[ ]+cb f3[ ]+set 6,e +[ ]+504:[ ]+cb f4[ ]+set 6,h +[ ]+506:[ ]+cb f5[ ]+set 6,l +[ ]+508:[ ]+cb fe[ ]+set 7,\(hl\) +[ ]+50a:[ ]+dd cb 09 fe[ ]+set 7,\(ix\+9\) +[ ]+50e:[ ]+fd cb 09 fe[ ]+set 7,\(iy\+9\) +[ ]+512:[ ]+cb ff[ ]+set 7,a +[ ]+514:[ ]+cb f8[ ]+set 7,b +[ ]+516:[ ]+cb f9[ ]+set 7,c +[ ]+518:[ ]+cb fa[ ]+set 7,d +[ ]+51a:[ ]+cb fb[ ]+set 7,e +[ ]+51c:[ ]+cb fc[ ]+set 7,h +[ ]+51e:[ ]+cb fd[ ]+set 7,l +[ ]+520:[ ]+cb 26[ ]+sla \(hl\) +[ ]+522:[ ]+dd cb 09 26[ ]+sla \(ix\+9\) +[ ]+526:[ ]+fd cb 09 26[ ]+sla \(iy\+9\) +[ ]+52a:[ ]+cb 27[ ]+sla a +[ ]+52c:[ ]+cb 20[ ]+sla b +[ ]+52e:[ ]+cb 21[ ]+sla c +[ ]+530:[ ]+cb 22[ ]+sla d +[ ]+532:[ ]+cb 23[ ]+sla e +[ ]+534:[ ]+cb 24[ ]+sla h +[ ]+536:[ ]+cb 25[ ]+sla l +[ ]+538:[ ]+cb 2e[ ]+sra \(hl\) +[ ]+53a:[ ]+dd cb 09 2e[ ]+sra \(ix\+9\) +[ ]+53e:[ ]+fd cb 09 2e[ ]+sra \(iy\+9\) +[ ]+542:[ ]+cb 2f[ ]+sra a +[ ]+544:[ ]+cb 28[ ]+sra b +[ ]+546:[ ]+cb 29[ ]+sra c +[ ]+548:[ ]+cb 2a[ ]+sra d +[ ]+54a:[ ]+cb 2b[ ]+sra e +[ ]+54c:[ ]+cb 2c[ ]+sra h +[ ]+54e:[ ]+cb 2d[ ]+sra l +[ ]+550:[ ]+cb 3e[ ]+srl \(hl\) +[ ]+552:[ ]+dd cb 09 3e[ ]+srl \(ix\+9\) +[ ]+556:[ ]+fd cb 09 3e[ ]+srl \(iy\+9\) +[ ]+55a:[ ]+cb 3f[ ]+srl a +[ ]+55c:[ ]+cb 38[ ]+srl b +[ ]+55e:[ ]+cb 39[ ]+srl c +[ ]+560:[ ]+cb 3a[ ]+srl d +[ ]+562:[ ]+cb 3b[ ]+srl e +[ ]+564:[ ]+cb 3c[ ]+srl h +[ ]+566:[ ]+cb 3d[ ]+srl l +[ ]+568:[ ]+96[ ]+sub \(hl\) +[ ]+569:[ ]+dd 96 09[ ]+sub \(ix\+9\) +[ ]+56c:[ ]+fd 96 09[ ]+sub \(iy\+9\) +[ ]+56f:[ ]+d6 03[ ]+sub 0x03 +[ ]+571:[ ]+97[ ]+sub a +[ ]+572:[ ]+90[ ]+sub b +[ ]+573:[ ]+91[ ]+sub c +[ ]+574:[ ]+92[ ]+sub d +[ ]+575:[ ]+93[ ]+sub e +[ ]+576:[ ]+94[ ]+sub h +[ ]+577:[ ]+95[ ]+sub l +[ ]+578:[ ]+ae[ ]+xor \(hl\) +[ ]+579:[ ]+dd ae 09[ ]+xor \(ix\+9\) +[ ]+57c:[ ]+fd ae 09[ ]+xor \(iy\+9\) +[ ]+57f:[ ]+ee 03[ ]+xor 0x03 +[ ]+581:[ ]+af[ ]+xor a +[ ]+582:[ ]+a8[ ]+xor b +[ ]+583:[ ]+a9[ ]+xor c +[ ]+584:[ ]+aa[ ]+xor d +[ ]+585:[ ]+ab[ ]+xor e +[ ]+586:[ ]+ac[ ]+xor h +[ ]+587:[ ]+ad[ ]+xor l +[ ]+588:[ ]+dd 7c[ ]+ld a,ixh +[ ]+58a:[ ]+dd 44[ ]+ld b,ixh +[ ]+58c:[ ]+dd 4c[ ]+ld c,ixh +[ ]+58e:[ ]+dd 54[ ]+ld d,ixh +[ ]+590:[ ]+dd 5c[ ]+ld e,ixh +[ ]+592:[ ]+dd 64[ ]+ld ixh,ixh +[ ]+594:[ ]+dd 6c[ ]+ld ixl,ixh +[ ]+596:[ ]+dd 7d[ ]+ld a,ixl +[ ]+598:[ ]+dd 45[ ]+ld b,ixl +[ ]+59a:[ ]+dd 4d[ ]+ld c,ixl +[ ]+59c:[ ]+dd 55[ ]+ld d,ixl +[ ]+59e:[ ]+dd 5d[ ]+ld e,ixl +[ ]+5a0:[ ]+dd 65[ ]+ld ixh,ixl +[ ]+5a2:[ ]+dd 6d[ ]+ld ixl,ixl +[ ]+5a4:[ ]+fd 7c[ ]+ld a,iyh +[ ]+5a6:[ ]+fd 44[ ]+ld b,iyh +[ ]+5a8:[ ]+fd 4c[ ]+ld c,iyh +[ ]+5aa:[ ]+fd 54[ ]+ld d,iyh +[ ]+5ac:[ ]+fd 5c[ ]+ld e,iyh +[ ]+5ae:[ ]+fd 64[ ]+ld iyh,iyh +[ ]+5b0:[ ]+fd 6c[ ]+ld iyl,iyh +[ ]+5b2:[ ]+fd 7d[ ]+ld a,iyl +[ ]+5b4:[ ]+fd 45[ ]+ld b,iyl +[ ]+5b6:[ ]+fd 4d[ ]+ld c,iyl +[ ]+5b8:[ ]+fd 55[ ]+ld d,iyl +[ ]+5ba:[ ]+fd 5d[ ]+ld e,iyl +[ ]+5bc:[ ]+fd 65[ ]+ld iyh,iyl +[ ]+5be:[ ]+fd 6d[ ]+ld iyl,iyl +[ ]+5c0:[ ]+dd 67[ ]+ld ixh,a +[ ]+5c2:[ ]+dd 60[ ]+ld ixh,b +[ ]+5c4:[ ]+dd 61[ ]+ld ixh,c +[ ]+5c6:[ ]+dd 62[ ]+ld ixh,d +[ ]+5c8:[ ]+dd 63[ ]+ld ixh,e +[ ]+5ca:[ ]+dd 64[ ]+ld ixh,ixh +[ ]+5cc:[ ]+dd 65[ ]+ld ixh,ixl +[ ]+5ce:[ ]+dd 26 19[ ]+ld ixh,0x19 +[ ]+5d1:[ ]+dd 6f[ ]+ld ixl,a +[ ]+5d3:[ ]+dd 68[ ]+ld ixl,b +[ ]+5d5:[ ]+dd 69[ ]+ld ixl,c +[ ]+5d7:[ ]+dd 6a[ ]+ld ixl,d +[ ]+5d9:[ ]+dd 6b[ ]+ld ixl,e +[ ]+5db:[ ]+dd 6c[ ]+ld ixl,ixh +[ ]+5dd:[ ]+dd 6d[ ]+ld ixl,ixl +[ ]+5df:[ ]+dd 2e 19[ ]+ld ixl,0x19 +[ ]+5e2:[ ]+fd 67[ ]+ld iyh,a +[ ]+5e4:[ ]+fd 60[ ]+ld iyh,b +[ ]+5e6:[ ]+fd 61[ ]+ld iyh,c +[ ]+5e8:[ ]+fd 62[ ]+ld iyh,d +[ ]+5ea:[ ]+fd 63[ ]+ld iyh,e +[ ]+5ec:[ ]+fd 64[ ]+ld iyh,iyh +[ ]+5ee:[ ]+fd 65[ ]+ld iyh,iyl +[ ]+5f0:[ ]+fd 26 19[ ]+ld iyh,0x19 +[ ]+5f3:[ ]+fd 6f[ ]+ld iyl,a +[ ]+5f5:[ ]+fd 68[ ]+ld iyl,b +[ ]+5f7:[ ]+fd 69[ ]+ld iyl,c +[ ]+5f9:[ ]+fd 6a[ ]+ld iyl,d +[ ]+5fb:[ ]+fd 6b[ ]+ld iyl,e +[ ]+5fd:[ ]+fd 6c[ ]+ld iyl,iyh +[ ]+5ff:[ ]+fd 6d[ ]+ld iyl,iyl +[ ]+601:[ ]+fd 2e 19[ ]+ld iyl,0x19 +[ ]+604:[ ]+dd 84[ ]+add a,ixh +[ ]+606:[ ]+dd 85[ ]+add a,ixl +[ ]+608:[ ]+fd 84[ ]+add a,iyh +[ ]+60a:[ ]+fd 85[ ]+add a,iyl +[ ]+60c:[ ]+dd 8c[ ]+adc a,ixh +[ ]+60e:[ ]+dd 8d[ ]+adc a,ixl +[ ]+610:[ ]+fd 8c[ ]+adc a,iyh +[ ]+612:[ ]+fd 8d[ ]+adc a,iyl +[ ]+614:[ ]+dd bc[ ]+cp ixh +[ ]+616:[ ]+dd bd[ ]+cp ixl +[ ]+618:[ ]+fd bc[ ]+cp iyh +[ ]+61a:[ ]+fd bd[ ]+cp iyl +[ ]+61c:[ ]+dd 25[ ]+dec ixh +[ ]+61e:[ ]+dd 2d[ ]+dec ixl +[ ]+620:[ ]+fd 25[ ]+dec iyh +[ ]+622:[ ]+fd 2d[ ]+dec iyl +[ ]+624:[ ]+dd 24[ ]+inc ixh +[ ]+626:[ ]+dd 2c[ ]+inc ixl +[ ]+628:[ ]+fd 24[ ]+inc iyh +[ ]+62a:[ ]+fd 2c[ ]+inc iyl +[ ]+62c:[ ]+dd 9c[ ]+sbc a,ixh +[ ]+62e:[ ]+dd 9d[ ]+sbc a,ixl +[ ]+630:[ ]+fd 9c[ ]+sbc a,iyh +[ ]+632:[ ]+fd 9d[ ]+sbc a,iyl +[ ]+634:[ ]+dd 94[ ]+sub ixh +[ ]+636:[ ]+dd 95[ ]+sub ixl +[ ]+638:[ ]+fd 94[ ]+sub iyh +[ ]+63a:[ ]+fd 95[ ]+sub iyl +[ ]+63c:[ ]+dd a4[ ]+and ixh +[ ]+63e:[ ]+dd a5[ ]+and ixl +[ ]+640:[ ]+fd a4[ ]+and iyh +[ ]+642:[ ]+fd a5[ ]+and iyl +[ ]+644:[ ]+dd b4[ ]+or ixh +[ ]+646:[ ]+dd b5[ ]+or ixl +[ ]+648:[ ]+fd b4[ ]+or iyh +[ ]+64a:[ ]+fd b5[ ]+or iyl +[ ]+64c:[ ]+dd ac[ ]+xor ixh +[ ]+64e:[ ]+dd ad[ ]+xor ixl +[ ]+650:[ ]+fd ac[ ]+xor iyh +[ ]+652:[ ]+fd ad[ ]+xor iyl +[ ]+654:[ ]+ed 70[ ]+in f,\(c\) +[ ]+656:[ ]+ed 70[ ]+in f,\(c\) +[ ]+658:[ ]+ed 71[ ]+out \(c\),0 +[ ]+65a:[ ]+dd cb 08 07[ ]+rlc \(ix\+8\),a +[ ]+65e:[ ]+dd cb 08 00[ ]+rlc \(ix\+8\),b +[ ]+662:[ ]+dd cb 08 01[ ]+rlc \(ix\+8\),c +[ ]+666:[ ]+dd cb 08 02[ ]+rlc \(ix\+8\),d +[ ]+66a:[ ]+dd cb 08 03[ ]+rlc \(ix\+8\),e +[ ]+66e:[ ]+dd cb 08 04[ ]+rlc \(ix\+8\),h +[ ]+672:[ ]+dd cb 08 05[ ]+rlc \(ix\+8\),l +[ ]+676:[ ]+fd cb 08 07[ ]+rlc \(iy\+8\),a +[ ]+67a:[ ]+fd cb 08 00[ ]+rlc \(iy\+8\),b +[ ]+67e:[ ]+fd cb 08 01[ ]+rlc \(iy\+8\),c +[ ]+682:[ ]+fd cb 08 02[ ]+rlc \(iy\+8\),d +[ ]+686:[ ]+fd cb 08 03[ ]+rlc \(iy\+8\),e +[ ]+68a:[ ]+fd cb 08 04[ ]+rlc \(iy\+8\),h +[ ]+68e:[ ]+fd cb 08 05[ ]+rlc \(iy\+8\),l +[ ]+692:[ ]+dd cb 08 0f[ ]+rrc \(ix\+8\),a +[ ]+696:[ ]+dd cb 08 08[ ]+rrc \(ix\+8\),b +[ ]+69a:[ ]+dd cb 08 09[ ]+rrc \(ix\+8\),c +[ ]+69e:[ ]+dd cb 08 0a[ ]+rrc \(ix\+8\),d +[ ]+6a2:[ ]+dd cb 08 0b[ ]+rrc \(ix\+8\),e +[ ]+6a6:[ ]+dd cb 08 0c[ ]+rrc \(ix\+8\),h +[ ]+6aa:[ ]+dd cb 08 0d[ ]+rrc \(ix\+8\),l +[ ]+6ae:[ ]+fd cb 08 0f[ ]+rrc \(iy\+8\),a +[ ]+6b2:[ ]+fd cb 08 08[ ]+rrc \(iy\+8\),b +[ ]+6b6:[ ]+fd cb 08 09[ ]+rrc \(iy\+8\),c +[ ]+6ba:[ ]+fd cb 08 0a[ ]+rrc \(iy\+8\),d +[ ]+6be:[ ]+fd cb 08 0b[ ]+rrc \(iy\+8\),e +[ ]+6c2:[ ]+fd cb 08 0c[ ]+rrc \(iy\+8\),h +[ ]+6c6:[ ]+fd cb 08 0d[ ]+rrc \(iy\+8\),l +[ ]+6ca:[ ]+dd cb 08 17[ ]+rl \(ix\+8\),a +[ ]+6ce:[ ]+dd cb 08 10[ ]+rl \(ix\+8\),b +[ ]+6d2:[ ]+dd cb 08 11[ ]+rl \(ix\+8\),c +[ ]+6d6:[ ]+dd cb 08 12[ ]+rl \(ix\+8\),d +[ ]+6da:[ ]+dd cb 08 13[ ]+rl \(ix\+8\),e +[ ]+6de:[ ]+dd cb 08 14[ ]+rl \(ix\+8\),h +[ ]+6e2:[ ]+dd cb 08 15[ ]+rl \(ix\+8\),l +[ ]+6e6:[ ]+fd cb 08 17[ ]+rl \(iy\+8\),a +[ ]+6ea:[ ]+fd cb 08 10[ ]+rl \(iy\+8\),b +[ ]+6ee:[ ]+fd cb 08 11[ ]+rl \(iy\+8\),c +[ ]+6f2:[ ]+fd cb 08 12[ ]+rl \(iy\+8\),d +[ ]+6f6:[ ]+fd cb 08 13[ ]+rl \(iy\+8\),e +[ ]+6fa:[ ]+fd cb 08 14[ ]+rl \(iy\+8\),h +[ ]+6fe:[ ]+fd cb 08 15[ ]+rl \(iy\+8\),l +[ ]+702:[ ]+dd cb 08 1f[ ]+rr \(ix\+8\),a +[ ]+706:[ ]+dd cb 08 18[ ]+rr \(ix\+8\),b +[ ]+70a:[ ]+dd cb 08 19[ ]+rr \(ix\+8\),c +[ ]+70e:[ ]+dd cb 08 1a[ ]+rr \(ix\+8\),d +[ ]+712:[ ]+dd cb 08 1b[ ]+rr \(ix\+8\),e +[ ]+716:[ ]+dd cb 08 1c[ ]+rr \(ix\+8\),h +[ ]+71a:[ ]+dd cb 08 1d[ ]+rr \(ix\+8\),l +[ ]+71e:[ ]+fd cb 08 1f[ ]+rr \(iy\+8\),a +[ ]+722:[ ]+fd cb 08 18[ ]+rr \(iy\+8\),b +[ ]+726:[ ]+fd cb 08 19[ ]+rr \(iy\+8\),c +[ ]+72a:[ ]+fd cb 08 1a[ ]+rr \(iy\+8\),d +[ ]+72e:[ ]+fd cb 08 1b[ ]+rr \(iy\+8\),e +[ ]+732:[ ]+fd cb 08 1c[ ]+rr \(iy\+8\),h +[ ]+736:[ ]+fd cb 08 1d[ ]+rr \(iy\+8\),l +[ ]+73a:[ ]+dd cb 08 27[ ]+sla \(ix\+8\),a +[ ]+73e:[ ]+dd cb 08 20[ ]+sla \(ix\+8\),b +[ ]+742:[ ]+dd cb 08 21[ ]+sla \(ix\+8\),c +[ ]+746:[ ]+dd cb 08 22[ ]+sla \(ix\+8\),d +[ ]+74a:[ ]+dd cb 08 23[ ]+sla \(ix\+8\),e +[ ]+74e:[ ]+dd cb 08 24[ ]+sla \(ix\+8\),h +[ ]+752:[ ]+dd cb 08 25[ ]+sla \(ix\+8\),l +[ ]+756:[ ]+fd cb 08 27[ ]+sla \(iy\+8\),a +[ ]+75a:[ ]+fd cb 08 20[ ]+sla \(iy\+8\),b +[ ]+75e:[ ]+fd cb 08 21[ ]+sla \(iy\+8\),c +[ ]+762:[ ]+fd cb 08 22[ ]+sla \(iy\+8\),d +[ ]+766:[ ]+fd cb 08 23[ ]+sla \(iy\+8\),e +[ ]+76a:[ ]+fd cb 08 24[ ]+sla \(iy\+8\),h +[ ]+76e:[ ]+fd cb 08 25[ ]+sla \(iy\+8\),l +[ ]+772:[ ]+dd cb 08 2f[ ]+sra \(ix\+8\),a +[ ]+776:[ ]+dd cb 08 28[ ]+sra \(ix\+8\),b +[ ]+77a:[ ]+dd cb 08 29[ ]+sra \(ix\+8\),c +[ ]+77e:[ ]+dd cb 08 2a[ ]+sra \(ix\+8\),d +[ ]+782:[ ]+dd cb 08 2b[ ]+sra \(ix\+8\),e +[ ]+786:[ ]+dd cb 08 2c[ ]+sra \(ix\+8\),h +[ ]+78a:[ ]+dd cb 08 2d[ ]+sra \(ix\+8\),l +[ ]+78e:[ ]+fd cb 08 2f[ ]+sra \(iy\+8\),a +[ ]+792:[ ]+fd cb 08 28[ ]+sra \(iy\+8\),b +[ ]+796:[ ]+fd cb 08 29[ ]+sra \(iy\+8\),c +[ ]+79a:[ ]+fd cb 08 2a[ ]+sra \(iy\+8\),d +[ ]+79e:[ ]+fd cb 08 2b[ ]+sra \(iy\+8\),e +[ ]+7a2:[ ]+fd cb 08 2c[ ]+sra \(iy\+8\),h +[ ]+7a6:[ ]+fd cb 08 2d[ ]+sra \(iy\+8\),l +[ ]+7aa:[ ]+dd cb 08 37[ ]+sli \(ix\+8\),a +[ ]+7ae:[ ]+dd cb 08 30[ ]+sli \(ix\+8\),b +[ ]+7b2:[ ]+dd cb 08 31[ ]+sli \(ix\+8\),c +[ ]+7b6:[ ]+dd cb 08 32[ ]+sli \(ix\+8\),d +[ ]+7ba:[ ]+dd cb 08 33[ ]+sli \(ix\+8\),e +[ ]+7be:[ ]+dd cb 08 34[ ]+sli \(ix\+8\),h +[ ]+7c2:[ ]+dd cb 08 35[ ]+sli \(ix\+8\),l +[ ]+7c6:[ ]+fd cb 08 37[ ]+sli \(iy\+8\),a +[ ]+7ca:[ ]+fd cb 08 30[ ]+sli \(iy\+8\),b +[ ]+7ce:[ ]+fd cb 08 31[ ]+sli \(iy\+8\),c +[ ]+7d2:[ ]+fd cb 08 32[ ]+sli \(iy\+8\),d +[ ]+7d6:[ ]+fd cb 08 33[ ]+sli \(iy\+8\),e +[ ]+7da:[ ]+fd cb 08 34[ ]+sli \(iy\+8\),h +[ ]+7de:[ ]+fd cb 08 35[ ]+sli \(iy\+8\),l +[ ]+7e2:[ ]+dd cb 08 3f[ ]+srl \(ix\+8\),a +[ ]+7e6:[ ]+dd cb 08 38[ ]+srl \(ix\+8\),b +[ ]+7ea:[ ]+dd cb 08 39[ ]+srl \(ix\+8\),c +[ ]+7ee:[ ]+dd cb 08 3a[ ]+srl \(ix\+8\),d +[ ]+7f2:[ ]+dd cb 08 3b[ ]+srl \(ix\+8\),e +[ ]+7f6:[ ]+dd cb 08 3c[ ]+srl \(ix\+8\),h +[ ]+7fa:[ ]+dd cb 08 3d[ ]+srl \(ix\+8\),l +[ ]+7fe:[ ]+fd cb 08 3f[ ]+srl \(iy\+8\),a +[ ]+802:[ ]+fd cb 08 38[ ]+srl \(iy\+8\),b +[ ]+806:[ ]+fd cb 08 39[ ]+srl \(iy\+8\),c +[ ]+80a:[ ]+fd cb 08 3a[ ]+srl \(iy\+8\),d +[ ]+80e:[ ]+fd cb 08 3b[ ]+srl \(iy\+8\),e +[ ]+812:[ ]+fd cb 08 3c[ ]+srl \(iy\+8\),h +[ ]+816:[ ]+fd cb 08 3d[ ]+srl \(iy\+8\),l +[ ]+81a:[ ]+dd cb 08 87[ ]+res 0,\(ix\+8\),a +[ ]+81e:[ ]+dd cb 08 80[ ]+res 0,\(ix\+8\),b +[ ]+822:[ ]+dd cb 08 81[ ]+res 0,\(ix\+8\),c +[ ]+826:[ ]+dd cb 08 82[ ]+res 0,\(ix\+8\),d +[ ]+82a:[ ]+dd cb 08 83[ ]+res 0,\(ix\+8\),e +[ ]+82e:[ ]+dd cb 08 84[ ]+res 0,\(ix\+8\),h +[ ]+832:[ ]+dd cb 08 85[ ]+res 0,\(ix\+8\),l +[ ]+836:[ ]+fd cb 08 87[ ]+res 0,\(iy\+8\),a +[ ]+83a:[ ]+fd cb 08 80[ ]+res 0,\(iy\+8\),b +[ ]+83e:[ ]+fd cb 08 81[ ]+res 0,\(iy\+8\),c +[ ]+842:[ ]+fd cb 08 82[ ]+res 0,\(iy\+8\),d +[ ]+846:[ ]+fd cb 08 83[ ]+res 0,\(iy\+8\),e +[ ]+84a:[ ]+fd cb 08 84[ ]+res 0,\(iy\+8\),h +[ ]+84e:[ ]+fd cb 08 85[ ]+res 0,\(iy\+8\),l +[ ]+852:[ ]+dd cb 08 8f[ ]+res 1,\(ix\+8\),a +[ ]+856:[ ]+dd cb 08 88[ ]+res 1,\(ix\+8\),b +[ ]+85a:[ ]+dd cb 08 89[ ]+res 1,\(ix\+8\),c +[ ]+85e:[ ]+dd cb 08 8a[ ]+res 1,\(ix\+8\),d +[ ]+862:[ ]+dd cb 08 8b[ ]+res 1,\(ix\+8\),e +[ ]+866:[ ]+dd cb 08 8c[ ]+res 1,\(ix\+8\),h +[ ]+86a:[ ]+dd cb 08 8d[ ]+res 1,\(ix\+8\),l +[ ]+86e:[ ]+fd cb 08 8f[ ]+res 1,\(iy\+8\),a +[ ]+872:[ ]+fd cb 08 88[ ]+res 1,\(iy\+8\),b +[ ]+876:[ ]+fd cb 08 89[ ]+res 1,\(iy\+8\),c +[ ]+87a:[ ]+fd cb 08 8a[ ]+res 1,\(iy\+8\),d +[ ]+87e:[ ]+fd cb 08 8b[ ]+res 1,\(iy\+8\),e +[ ]+882:[ ]+fd cb 08 8c[ ]+res 1,\(iy\+8\),h +[ ]+886:[ ]+fd cb 08 8d[ ]+res 1,\(iy\+8\),l +[ ]+88a:[ ]+dd cb 08 97[ ]+res 2,\(ix\+8\),a +[ ]+88e:[ ]+dd cb 08 90[ ]+res 2,\(ix\+8\),b +[ ]+892:[ ]+dd cb 08 91[ ]+res 2,\(ix\+8\),c +[ ]+896:[ ]+dd cb 08 92[ ]+res 2,\(ix\+8\),d +[ ]+89a:[ ]+dd cb 08 93[ ]+res 2,\(ix\+8\),e +[ ]+89e:[ ]+dd cb 08 94[ ]+res 2,\(ix\+8\),h +[ ]+8a2:[ ]+dd cb 08 95[ ]+res 2,\(ix\+8\),l +[ ]+8a6:[ ]+fd cb 08 97[ ]+res 2,\(iy\+8\),a +[ ]+8aa:[ ]+fd cb 08 90[ ]+res 2,\(iy\+8\),b +[ ]+8ae:[ ]+fd cb 08 91[ ]+res 2,\(iy\+8\),c +[ ]+8b2:[ ]+fd cb 08 92[ ]+res 2,\(iy\+8\),d +[ ]+8b6:[ ]+fd cb 08 93[ ]+res 2,\(iy\+8\),e +[ ]+8ba:[ ]+fd cb 08 94[ ]+res 2,\(iy\+8\),h +[ ]+8be:[ ]+fd cb 08 95[ ]+res 2,\(iy\+8\),l +[ ]+8c2:[ ]+dd cb 08 9f[ ]+res 3,\(ix\+8\),a +[ ]+8c6:[ ]+dd cb 08 98[ ]+res 3,\(ix\+8\),b +[ ]+8ca:[ ]+dd cb 08 99[ ]+res 3,\(ix\+8\),c +[ ]+8ce:[ ]+dd cb 08 9a[ ]+res 3,\(ix\+8\),d +[ ]+8d2:[ ]+dd cb 08 9b[ ]+res 3,\(ix\+8\),e +[ ]+8d6:[ ]+dd cb 08 9c[ ]+res 3,\(ix\+8\),h +[ ]+8da:[ ]+dd cb 08 9d[ ]+res 3,\(ix\+8\),l +[ ]+8de:[ ]+fd cb 08 9f[ ]+res 3,\(iy\+8\),a +[ ]+8e2:[ ]+fd cb 08 98[ ]+res 3,\(iy\+8\),b +[ ]+8e6:[ ]+fd cb 08 99[ ]+res 3,\(iy\+8\),c +[ ]+8ea:[ ]+fd cb 08 9a[ ]+res 3,\(iy\+8\),d +[ ]+8ee:[ ]+fd cb 08 9b[ ]+res 3,\(iy\+8\),e +[ ]+8f2:[ ]+fd cb 08 9c[ ]+res 3,\(iy\+8\),h +[ ]+8f6:[ ]+fd cb 08 9d[ ]+res 3,\(iy\+8\),l +[ ]+8fa:[ ]+dd cb 08 a7[ ]+res 4,\(ix\+8\),a +[ ]+8fe:[ ]+dd cb 08 a0[ ]+res 4,\(ix\+8\),b +[ ]+902:[ ]+dd cb 08 a1[ ]+res 4,\(ix\+8\),c +[ ]+906:[ ]+dd cb 08 a2[ ]+res 4,\(ix\+8\),d +[ ]+90a:[ ]+dd cb 08 a3[ ]+res 4,\(ix\+8\),e +[ ]+90e:[ ]+dd cb 08 a4[ ]+res 4,\(ix\+8\),h +[ ]+912:[ ]+dd cb 08 a5[ ]+res 4,\(ix\+8\),l +[ ]+916:[ ]+fd cb 08 a7[ ]+res 4,\(iy\+8\),a +[ ]+91a:[ ]+fd cb 08 a0[ ]+res 4,\(iy\+8\),b +[ ]+91e:[ ]+fd cb 08 a1[ ]+res 4,\(iy\+8\),c +[ ]+922:[ ]+fd cb 08 a2[ ]+res 4,\(iy\+8\),d +[ ]+926:[ ]+fd cb 08 a3[ ]+res 4,\(iy\+8\),e +[ ]+92a:[ ]+fd cb 08 a4[ ]+res 4,\(iy\+8\),h +[ ]+92e:[ ]+fd cb 08 a5[ ]+res 4,\(iy\+8\),l +[ ]+932:[ ]+dd cb 08 af[ ]+res 5,\(ix\+8\),a +[ ]+936:[ ]+dd cb 08 a8[ ]+res 5,\(ix\+8\),b +[ ]+93a:[ ]+dd cb 08 a9[ ]+res 5,\(ix\+8\),c +[ ]+93e:[ ]+dd cb 08 aa[ ]+res 5,\(ix\+8\),d +[ ]+942:[ ]+dd cb 08 ab[ ]+res 5,\(ix\+8\),e +[ ]+946:[ ]+dd cb 08 ac[ ]+res 5,\(ix\+8\),h +[ ]+94a:[ ]+dd cb 08 ad[ ]+res 5,\(ix\+8\),l +[ ]+94e:[ ]+fd cb 08 af[ ]+res 5,\(iy\+8\),a +[ ]+952:[ ]+fd cb 08 a8[ ]+res 5,\(iy\+8\),b +[ ]+956:[ ]+fd cb 08 a9[ ]+res 5,\(iy\+8\),c +[ ]+95a:[ ]+fd cb 08 aa[ ]+res 5,\(iy\+8\),d +[ ]+95e:[ ]+fd cb 08 ab[ ]+res 5,\(iy\+8\),e +[ ]+962:[ ]+fd cb 08 ac[ ]+res 5,\(iy\+8\),h +[ ]+966:[ ]+fd cb 08 ad[ ]+res 5,\(iy\+8\),l +[ ]+96a:[ ]+dd cb 08 b7[ ]+res 6,\(ix\+8\),a +[ ]+96e:[ ]+dd cb 08 b0[ ]+res 6,\(ix\+8\),b +[ ]+972:[ ]+dd cb 08 b1[ ]+res 6,\(ix\+8\),c +[ ]+976:[ ]+dd cb 08 b2[ ]+res 6,\(ix\+8\),d +[ ]+97a:[ ]+dd cb 08 b3[ ]+res 6,\(ix\+8\),e +[ ]+97e:[ ]+dd cb 08 b4[ ]+res 6,\(ix\+8\),h +[ ]+982:[ ]+dd cb 08 b5[ ]+res 6,\(ix\+8\),l +[ ]+986:[ ]+fd cb 08 b7[ ]+res 6,\(iy\+8\),a +[ ]+98a:[ ]+fd cb 08 b0[ ]+res 6,\(iy\+8\),b +[ ]+98e:[ ]+fd cb 08 b1[ ]+res 6,\(iy\+8\),c +[ ]+992:[ ]+fd cb 08 b2[ ]+res 6,\(iy\+8\),d +[ ]+996:[ ]+fd cb 08 b3[ ]+res 6,\(iy\+8\),e +[ ]+99a:[ ]+fd cb 08 b4[ ]+res 6,\(iy\+8\),h +[ ]+99e:[ ]+fd cb 08 b5[ ]+res 6,\(iy\+8\),l +[ ]+9a2:[ ]+dd cb 08 bf[ ]+res 7,\(ix\+8\),a +[ ]+9a6:[ ]+dd cb 08 b8[ ]+res 7,\(ix\+8\),b +[ ]+9aa:[ ]+dd cb 08 b9[ ]+res 7,\(ix\+8\),c +[ ]+9ae:[ ]+dd cb 08 ba[ ]+res 7,\(ix\+8\),d +[ ]+9b2:[ ]+dd cb 08 bb[ ]+res 7,\(ix\+8\),e +[ ]+9b6:[ ]+dd cb 08 bc[ ]+res 7,\(ix\+8\),h +[ ]+9ba:[ ]+dd cb 08 bd[ ]+res 7,\(ix\+8\),l +[ ]+9be:[ ]+fd cb 08 bf[ ]+res 7,\(iy\+8\),a +[ ]+9c2:[ ]+fd cb 08 b8[ ]+res 7,\(iy\+8\),b +[ ]+9c6:[ ]+fd cb 08 b9[ ]+res 7,\(iy\+8\),c +[ ]+9ca:[ ]+fd cb 08 ba[ ]+res 7,\(iy\+8\),d +[ ]+9ce:[ ]+fd cb 08 bb[ ]+res 7,\(iy\+8\),e +[ ]+9d2:[ ]+fd cb 08 bc[ ]+res 7,\(iy\+8\),h +[ ]+9d6:[ ]+fd cb 08 bd[ ]+res 7,\(iy\+8\),l +[ ]+9da:[ ]+dd cb 08 c7[ ]+set 0,\(ix\+8\),a +[ ]+9de:[ ]+dd cb 08 c0[ ]+set 0,\(ix\+8\),b +[ ]+9e2:[ ]+dd cb 08 c1[ ]+set 0,\(ix\+8\),c +[ ]+9e6:[ ]+dd cb 08 c2[ ]+set 0,\(ix\+8\),d +[ ]+9ea:[ ]+dd cb 08 c3[ ]+set 0,\(ix\+8\),e +[ ]+9ee:[ ]+dd cb 08 c4[ ]+set 0,\(ix\+8\),h +[ ]+9f2:[ ]+dd cb 08 c5[ ]+set 0,\(ix\+8\),l +[ ]+9f6:[ ]+fd cb 08 c7[ ]+set 0,\(iy\+8\),a +[ ]+9fa:[ ]+fd cb 08 c0[ ]+set 0,\(iy\+8\),b +[ ]+9fe:[ ]+fd cb 08 c1[ ]+set 0,\(iy\+8\),c +[ ]+a02:[ ]+fd cb 08 c2[ ]+set 0,\(iy\+8\),d +[ ]+a06:[ ]+fd cb 08 c3[ ]+set 0,\(iy\+8\),e +[ ]+a0a:[ ]+fd cb 08 c4[ ]+set 0,\(iy\+8\),h +[ ]+a0e:[ ]+fd cb 08 c5[ ]+set 0,\(iy\+8\),l +[ ]+a12:[ ]+dd cb 08 cf[ ]+set 1,\(ix\+8\),a +[ ]+a16:[ ]+dd cb 08 c8[ ]+set 1,\(ix\+8\),b +[ ]+a1a:[ ]+dd cb 08 c9[ ]+set 1,\(ix\+8\),c +[ ]+a1e:[ ]+dd cb 08 ca[ ]+set 1,\(ix\+8\),d +[ ]+a22:[ ]+dd cb 08 cb[ ]+set 1,\(ix\+8\),e +[ ]+a26:[ ]+dd cb 08 cc[ ]+set 1,\(ix\+8\),h +[ ]+a2a:[ ]+dd cb 08 cd[ ]+set 1,\(ix\+8\),l +[ ]+a2e:[ ]+fd cb 08 cf[ ]+set 1,\(iy\+8\),a +[ ]+a32:[ ]+fd cb 08 c8[ ]+set 1,\(iy\+8\),b +[ ]+a36:[ ]+fd cb 08 c9[ ]+set 1,\(iy\+8\),c +[ ]+a3a:[ ]+fd cb 08 ca[ ]+set 1,\(iy\+8\),d +[ ]+a3e:[ ]+fd cb 08 cb[ ]+set 1,\(iy\+8\),e +[ ]+a42:[ ]+fd cb 08 cc[ ]+set 1,\(iy\+8\),h +[ ]+a46:[ ]+fd cb 08 cd[ ]+set 1,\(iy\+8\),l +[ ]+a4a:[ ]+dd cb 08 d7[ ]+set 2,\(ix\+8\),a +[ ]+a4e:[ ]+dd cb 08 d0[ ]+set 2,\(ix\+8\),b +[ ]+a52:[ ]+dd cb 08 d1[ ]+set 2,\(ix\+8\),c +[ ]+a56:[ ]+dd cb 08 d2[ ]+set 2,\(ix\+8\),d +[ ]+a5a:[ ]+dd cb 08 d3[ ]+set 2,\(ix\+8\),e +[ ]+a5e:[ ]+dd cb 08 d4[ ]+set 2,\(ix\+8\),h +[ ]+a62:[ ]+dd cb 08 d5[ ]+set 2,\(ix\+8\),l +[ ]+a66:[ ]+fd cb 08 d7[ ]+set 2,\(iy\+8\),a +[ ]+a6a:[ ]+fd cb 08 d0[ ]+set 2,\(iy\+8\),b +[ ]+a6e:[ ]+fd cb 08 d1[ ]+set 2,\(iy\+8\),c +[ ]+a72:[ ]+fd cb 08 d2[ ]+set 2,\(iy\+8\),d +[ ]+a76:[ ]+fd cb 08 d3[ ]+set 2,\(iy\+8\),e +[ ]+a7a:[ ]+fd cb 08 d4[ ]+set 2,\(iy\+8\),h +[ ]+a7e:[ ]+fd cb 08 d5[ ]+set 2,\(iy\+8\),l +[ ]+a82:[ ]+dd cb 08 df[ ]+set 3,\(ix\+8\),a +[ ]+a86:[ ]+dd cb 08 d8[ ]+set 3,\(ix\+8\),b +[ ]+a8a:[ ]+dd cb 08 d9[ ]+set 3,\(ix\+8\),c +[ ]+a8e:[ ]+dd cb 08 da[ ]+set 3,\(ix\+8\),d +[ ]+a92:[ ]+dd cb 08 db[ ]+set 3,\(ix\+8\),e +[ ]+a96:[ ]+dd cb 08 dc[ ]+set 3,\(ix\+8\),h +[ ]+a9a:[ ]+dd cb 08 dd[ ]+set 3,\(ix\+8\),l +[ ]+a9e:[ ]+fd cb 08 df[ ]+set 3,\(iy\+8\),a +[ ]+aa2:[ ]+fd cb 08 d8[ ]+set 3,\(iy\+8\),b +[ ]+aa6:[ ]+fd cb 08 d9[ ]+set 3,\(iy\+8\),c +[ ]+aaa:[ ]+fd cb 08 da[ ]+set 3,\(iy\+8\),d +[ ]+aae:[ ]+fd cb 08 db[ ]+set 3,\(iy\+8\),e +[ ]+ab2:[ ]+fd cb 08 dc[ ]+set 3,\(iy\+8\),h +[ ]+ab6:[ ]+fd cb 08 dd[ ]+set 3,\(iy\+8\),l +[ ]+aba:[ ]+dd cb 08 e7[ ]+set 4,\(ix\+8\),a +[ ]+abe:[ ]+dd cb 08 e0[ ]+set 4,\(ix\+8\),b +[ ]+ac2:[ ]+dd cb 08 e1[ ]+set 4,\(ix\+8\),c +[ ]+ac6:[ ]+dd cb 08 e2[ ]+set 4,\(ix\+8\),d +[ ]+aca:[ ]+dd cb 08 e3[ ]+set 4,\(ix\+8\),e +[ ]+ace:[ ]+dd cb 08 e4[ ]+set 4,\(ix\+8\),h +[ ]+ad2:[ ]+dd cb 08 e5[ ]+set 4,\(ix\+8\),l +[ ]+ad6:[ ]+fd cb 08 e7[ ]+set 4,\(iy\+8\),a +[ ]+ada:[ ]+fd cb 08 e0[ ]+set 4,\(iy\+8\),b +[ ]+ade:[ ]+fd cb 08 e1[ ]+set 4,\(iy\+8\),c +[ ]+ae2:[ ]+fd cb 08 e2[ ]+set 4,\(iy\+8\),d +[ ]+ae6:[ ]+fd cb 08 e3[ ]+set 4,\(iy\+8\),e +[ ]+aea:[ ]+fd cb 08 e4[ ]+set 4,\(iy\+8\),h +[ ]+aee:[ ]+fd cb 08 e5[ ]+set 4,\(iy\+8\),l +[ ]+af2:[ ]+dd cb 08 ef[ ]+set 5,\(ix\+8\),a +[ ]+af6:[ ]+dd cb 08 e8[ ]+set 5,\(ix\+8\),b +[ ]+afa:[ ]+dd cb 08 e9[ ]+set 5,\(ix\+8\),c +[ ]+afe:[ ]+dd cb 08 ea[ ]+set 5,\(ix\+8\),d +[ ]+b02:[ ]+dd cb 08 eb[ ]+set 5,\(ix\+8\),e +[ ]+b06:[ ]+dd cb 08 ec[ ]+set 5,\(ix\+8\),h +[ ]+b0a:[ ]+dd cb 08 ed[ ]+set 5,\(ix\+8\),l +[ ]+b0e:[ ]+fd cb 08 ef[ ]+set 5,\(iy\+8\),a +[ ]+b12:[ ]+fd cb 08 e8[ ]+set 5,\(iy\+8\),b +[ ]+b16:[ ]+fd cb 08 e9[ ]+set 5,\(iy\+8\),c +[ ]+b1a:[ ]+fd cb 08 ea[ ]+set 5,\(iy\+8\),d +[ ]+b1e:[ ]+fd cb 08 eb[ ]+set 5,\(iy\+8\),e +[ ]+b22:[ ]+fd cb 08 ec[ ]+set 5,\(iy\+8\),h +[ ]+b26:[ ]+fd cb 08 ed[ ]+set 5,\(iy\+8\),l +[ ]+b2a:[ ]+dd cb 08 f7[ ]+set 6,\(ix\+8\),a +[ ]+b2e:[ ]+dd cb 08 f0[ ]+set 6,\(ix\+8\),b +[ ]+b32:[ ]+dd cb 08 f1[ ]+set 6,\(ix\+8\),c +[ ]+b36:[ ]+dd cb 08 f2[ ]+set 6,\(ix\+8\),d +[ ]+b3a:[ ]+dd cb 08 f3[ ]+set 6,\(ix\+8\),e +[ ]+b3e:[ ]+dd cb 08 f4[ ]+set 6,\(ix\+8\),h +[ ]+b42:[ ]+dd cb 08 f5[ ]+set 6,\(ix\+8\),l +[ ]+b46:[ ]+fd cb 08 f7[ ]+set 6,\(iy\+8\),a +[ ]+b4a:[ ]+fd cb 08 f0[ ]+set 6,\(iy\+8\),b +[ ]+b4e:[ ]+fd cb 08 f1[ ]+set 6,\(iy\+8\),c +[ ]+b52:[ ]+fd cb 08 f2[ ]+set 6,\(iy\+8\),d +[ ]+b56:[ ]+fd cb 08 f3[ ]+set 6,\(iy\+8\),e +[ ]+b5a:[ ]+fd cb 08 f4[ ]+set 6,\(iy\+8\),h +[ ]+b5e:[ ]+fd cb 08 f5[ ]+set 6,\(iy\+8\),l +[ ]+b62:[ ]+dd cb 08 ff[ ]+set 7,\(ix\+8\),a +[ ]+b66:[ ]+dd cb 08 f8[ ]+set 7,\(ix\+8\),b +[ ]+b6a:[ ]+dd cb 08 f9[ ]+set 7,\(ix\+8\),c +[ ]+b6e:[ ]+dd cb 08 fa[ ]+set 7,\(ix\+8\),d +[ ]+b72:[ ]+dd cb 08 fb[ ]+set 7,\(ix\+8\),e +[ ]+b76:[ ]+dd cb 08 fc[ ]+set 7,\(ix\+8\),h +[ ]+b7a:[ ]+dd cb 08 fd[ ]+set 7,\(ix\+8\),l +[ ]+b7e:[ ]+fd cb 08 ff[ ]+set 7,\(iy\+8\),a +[ ]+b82:[ ]+fd cb 08 f8[ ]+set 7,\(iy\+8\),b +[ ]+b86:[ ]+fd cb 08 f9[ ]+set 7,\(iy\+8\),c +[ ]+b8a:[ ]+fd cb 08 fa[ ]+set 7,\(iy\+8\),d +[ ]+b8e:[ ]+fd cb 08 fb[ ]+set 7,\(iy\+8\),e +[ ]+b92:[ ]+fd cb 08 fc[ ]+set 7,\(iy\+8\),h +[ ]+b96:[ ]+fd cb 08 fd[ ]+set 7,\(iy\+8\),l +[ ]+b9a:[ ]+cb 37[ ]+sli a +[ ]+b9c:[ ]+cb 30[ ]+sli b +[ ]+b9e:[ ]+cb 31[ ]+sli c +[ ]+ba0:[ ]+cb 32[ ]+sli d +[ ]+ba2:[ ]+cb 33[ ]+sli e +[ ]+ba4:[ ]+cb 34[ ]+sli h +[ ]+ba6:[ ]+cb 35[ ]+sli l +[ ]+ba8:[ ]+cb 36[ ]+sli \(hl\) +[ ]+baa:[ ]+dd cb 07 36[ ]+sli \(ix\+7\) +[ ]+bae:[ ]+fd cb f7 36[ ]+sli \(iy\-9\) +[ ]+bb2:[ ]+cb 37[ ]+sli a +[ ]+bb4:[ ]+cb 30[ ]+sli b +[ ]+bb6:[ ]+cb 31[ ]+sli c +[ ]+bb8:[ ]+cb 32[ ]+sli d +[ ]+bba:[ ]+cb 33[ ]+sli e +[ ]+bbc:[ ]+cb 34[ ]+sli h +[ ]+bbe:[ ]+cb 35[ ]+sli l +[ ]+bc0:[ ]+cb 36[ ]+sli \(hl\) +[ ]+bc2:[ ]+dd cb 07 36[ ]+sli \(ix\+7\) +[ ]+bc6:[ ]+fd cb f7 36[ ]+sli \(iy\-9\) +[ ]+bca:[ ]+cb 37[ ]+sli a +[ ]+bcc:[ ]+cb 30[ ]+sli b +[ ]+bce:[ ]+cb 31[ ]+sli c +[ ]+bd0:[ ]+cb 32[ ]+sli d +[ ]+bd2:[ ]+cb 33[ ]+sli e +[ ]+bd4:[ ]+cb 34[ ]+sli h +[ ]+bd6:[ ]+cb 35[ ]+sli l +[ ]+bd8:[ ]+cb 36[ ]+sli \(hl\) +[ ]+bda:[ ]+dd cb 07 36[ ]+sli \(ix\+7\) +[ ]+bde:[ ]+fd cb f7 36[ ]+sli \(iy\-9\) +[ ]+be2:[ ]+ed a4[ ]+ldix +[ ]+be4:[ ]+ed a5[ ]+ldws +[ ]+be6:[ ]+ed b4[ ]+ldirx +[ ]+be8:[ ]+ed ac[ ]+lddx +[ ]+bea:[ ]+ed bc[ ]+lddrx +[ ]+bec:[ ]+ed b7[ ]+ldpirx +[ ]+bee:[ ]+ed 90[ ]+outinb +[ ]+bf0:[ ]+ed 30[ ]+mul d,e +[ ]+bf2:[ ]+ed 31[ ]+add hl,a +[ ]+bf4:[ ]+ed 32[ ]+add de,a +[ ]+bf6:[ ]+ed 33[ ]+add bc,a +[ ]+bf8:[ ]+ed 34 af be[ ]+add hl,0xbeaf +[ ]+bfc:[ ]+ed 35 ad de[ ]+add de,0xdead +[ ]+c00:[ ]+ed 36 34 12[ ]+add bc,0x1234 +[ ]+c04:[ ]+ed 23[ ]+swapnib +[ ]+c06:[ ]+ed 24[ ]+mirror +[ ]+c08:[ ]+ed 8a 12 34[ ]+push 0x1234 +[ ]+c0c:[ ]+ed 91 12 34[ ]+nextreg 0x12,0x34 +[ ]+c10:[ ]+ed 92 56[ ]+nextreg 0x56,a +[ ]+c13:[ ]+ed 93[ ]+pixeldn +[ ]+c15:[ ]+ed 94[ ]+pixelad +[ ]+c17:[ ]+ed 95[ ]+setae +[ ]+c19:[ ]+ed 27 78[ ]+test 0x78 +[ ]+c1c:[ ]+ed 28[ ]+bsla de,b +[ ]+c1e:[ ]+ed 29[ ]+bsra de,b +[ ]+c20:[ ]+ed 2a[ ]+bsrl de,b +[ ]+c22:[ ]+ed 2b[ ]+bsrf de,b +[ ]+c24:[ ]+ed 2c[ ]+bslc de,b +[ ]+c26:[ ]+ed 98[ ]+jp \(c\) +[ ]+c28:[ ]+ed 8a 00 00[ ]+push 0x0000 +[ ]+c2c:[ ]+ed 30[ ]+mul d,e +[ ]+c2e:[ ]+ed 23[ ]+swapnib +[ ]+c30:[ ]+ed 27 ab[ ]+test 0xab +#pass diff --git a/gas/testsuite/gas/z80/z80n_all.s b/gas/testsuite/gas/z80/z80n_all.s new file mode 100644 index 0000000..3d0e341 --- /dev/null +++ b/gas/testsuite/gas/z80/z80n_all.s @@ -0,0 +1,1242 @@ + .text + .org 0 + + adc a,(hl) + adc a,(ix+9) + adc a,(iy+9) + adc a,3 + adc a,a + adc a,b + adc a,c + adc a,d + adc a,e + adc a,h + adc a,l + adc hl,bc + adc hl,de + adc hl,hl + adc hl,sp + add a,(hl) + add a,(ix+9) + add a,(iy+9) + add a,3 + add a,a + add a,b + add a,c + add a,d + add a,e + add a,h + add a,l + add hl,bc + add hl,de + add hl,hl + add hl,sp + add ix,bc + add ix,de + add ix,ix + add ix,sp + add iy,bc + add iy,de + add iy,iy + add iy,sp + and (hl) + and (ix+9) + and (iy+9) + and 3 + and a + and b + and c + and d + and e + and h + and l + bit 0,(hl) + bit 0,(ix+9) + bit 0,(iy+9) + bit 0,a + bit 0,b + bit 0,c + bit 0,d + bit 0,e + bit 0,h + bit 0,l + bit 1,(hl) + bit 1,(ix+9) + bit 1,(iy+9) + bit 1,a + bit 1,b + bit 1,c + bit 1,d + bit 1,e + bit 1,h + bit 1,l + bit 2,(hl) + bit 2,(ix+9) + bit 2,(iy+9) + bit 2,a + bit 2,b + bit 2,c + bit 2,d + bit 2,e + bit 2,h + bit 2,l + bit 3,(hl) + bit 3,(ix+9) + bit 3,(iy+9) + bit 3,a + bit 3,b + bit 3,c + bit 3,d + bit 3,e + bit 3,h + bit 3,l + bit 4,(hl) + bit 4,(ix+9) + bit 4,(iy+9) + bit 4,a + bit 4,b + bit 4,c + bit 4,d + bit 4,e + bit 4,h + bit 4,l + bit 5,(hl) + bit 5,(ix+9) + bit 5,(iy+9) + bit 5,a + bit 5,b + bit 5,c + bit 5,d + bit 5,e + bit 5,h + bit 5,l + bit 6,(hl) + bit 6,(ix+9) + bit 6,(iy+9) + bit 6,a + bit 6,b + bit 6,c + bit 6,d + bit 6,e + bit 6,h + bit 6,l + bit 7,(hl) + bit 7,(ix+9) + bit 7,(iy+9) + bit 7,a + bit 7,b + bit 7,c + bit 7,d + bit 7,e + bit 7,h + bit 7,l + call 0x1234 + call c,0x1234 + call m,0x1234 + call nc,0x1234 + call nz,0x1234 + call p,0x1234 + call pe,0x1234 + call po,0x1234 + call z,0x1234 + ccf + cp (hl) + cp (ix+9) + cp (iy+9) + cp 03 + cp a + cp b + cp c + cp d + cp e + cp h + cp l + cpd + cpdr + cpi + cpir + cpl + daa + dec (hl) + dec (ix+9) + dec (iy+9) + dec a + dec b + dec bc + dec c + dec d + dec de + dec e + dec h + dec hl + dec ix + dec iy + dec l + dec sp + di + djnz .+7 + ei + ex (sp),hl + ex (sp),ix + ex (sp),iy + ex af,af' ;' + ex de,hl + exx + halt + im 0 + im 1 + im 2 + in a,(c) + in a,(3) + in b,(c) + in c,(c) + in d,(c) + in e,(c) + in h,(c) + in l,(c) + inc (hl) + inc (ix+9) + inc (iy+9) + inc a + inc b + inc bc + inc c + inc d + inc de + inc e + inc h + inc hl + inc ix + inc iy + inc l + inc sp + ind + indr + ini + inir + jp (hl) + jp (ix) + jp (iy) + jp 0x1234 + jp c,0x1234 + jp m,0x1234 + jp nc,0x1234 + jp nz,0x1234 + jp p,0x1234 + jp pe,0x1234 + jp po,0x1234 + jp z,0x1234 + jr .+7 + jr c,.+7 + jr nc,.+7 + jr nz,.+7 + jr z,.+7 + ld (0x1234),a + ld (0x1234),bc + ld (0x1234),de + ld (0x1234),hl + ld (0x1234),ix + ld (0x1234),iy + ld (0x1234),sp + ld (bc),a + ld (de),a + ld (hl),3 + ld (hl),a + ld (hl),b + ld (hl),c + ld (hl),d + ld (hl),e + ld (hl),h + ld (hl),l + ld (ix+9),3 + ld (ix+9),a + ld (ix+9),b + ld (ix+9),c + ld (ix+9),d + ld (ix+9),e + ld (ix+9),h + ld (ix+9),l + ld (iy+9),3 + ld (iy+9),a + ld (iy+9),b + ld (iy+9),c + ld (iy+9),d + ld (iy+9),e + ld (iy+9),h + ld (iy+9),l + ld a,(0x1234) + ld a,(bc) + ld a,(de) + ld a,(hl) + ld a,(ix+9) + ld a,(iy+9) + ld a,3 + ld a,a + ld a,b + ld a,c + ld a,d + ld a,e + ld a,h + ld a,i + ld a,l + ld a,r + ld b,(hl) + ld b,(ix+9) + ld b,(iy+9) + ld b,3 + ld b,a + ld b,b + ld b,c + ld b,d + ld b,e + ld b,h + ld b,l + ld bc,(0x1234) + ld bc,0x1234 + ld c,(hl) + ld c,(ix+9) + ld c,(iy+9) + ld c,3 + ld c,a + ld c,b + ld c,c + ld c,d + ld c,e + ld c,h + ld c,l + ld d,(hl) + ld d,(ix+9) + ld d,(iy+9) + ld d,3 + ld d,a + ld d,b + ld d,c + ld d,d + ld d,e + ld d,h + ld d,l + ld de,(0x1234) + ld de,0x1234 + ld e,(hl) + ld e,(ix+9) + ld e,(iy+9) + ld e,3 + ld e,a + ld e,b + ld e,c + ld e,d + ld e,e + ld e,h + ld e,l + ld h,(hl) + ld h,(ix+9) + ld h,(iy+9) + ld h,3 + ld h,a + ld h,b + ld h,c + ld h,d + ld h,e + ld h,h + ld h,l + ld hl,(0x1234) + ld hl,0x1234 + ld i,a + ld ix,(0x1234) + ld ix,0x1234 + ld iy,(0x1234) + ld iy,0x1234 + ld l,(hl) + ld l,(ix+9) + ld l,(iy+9) + ld l,3 + ld l,a + ld l,b + ld l,c + ld l,d + ld l,e + ld l,h + ld l,l + ld r,a + ld sp,(0x1234) + ld sp,0x1234 + ld sp,hl + ld sp,ix + ld sp,iy + ldd + lddr + ldi + ldir + neg + nop + or (hl) + or (ix+9) + or (iy+9) + or 3 + or a + or b + or c + or d + or e + or h + or l + otdr + otir + out (c),a + out (c),b + out (c),c + out (c),d + out (c),e + out (c),h + out (c),l + out (3),a + outd + outi + pop af + pop bc + pop de + pop hl + pop ix + pop iy + push af + push bc + push de + push hl + push ix + push iy + res 0,(hl) + res 0,(ix+9) + res 0,(iy+9) + res 0,a + res 0,b + res 0,c + res 0,d + res 0,e + res 0,h + res 0,l + res 1,(hl) + res 1,(ix+9) + res 1,(iy+9) + res 1,a + res 1,b + res 1,c + res 1,d + res 1,e + res 1,h + res 1,l + res 2,(hl) + res 2,(ix+9) + res 2,(iy+9) + res 2,a + res 2,b + res 2,c + res 2,d + res 2,e + res 2,h + res 2,l + res 3,(hl) + res 3,(ix+9) + res 3,(iy+9) + res 3,a + res 3,b + res 3,c + res 3,d + res 3,e + res 3,h + res 3,l + res 4,(hl) + res 4,(ix+9) + res 4,(iy+9) + res 4,a + res 4,b + res 4,c + res 4,d + res 4,e + res 4,h + res 4,l + res 5,(hl) + res 5,(ix+9) + res 5,(iy+9) + res 5,a + res 5,b + res 5,c + res 5,d + res 5,e + res 5,h + res 5,l + res 6,(hl) + res 6,(ix+9) + res 6,(iy+9) + res 6,a + res 6,b + res 6,c + res 6,d + res 6,e + res 6,h + res 6,l + res 7,(hl) + res 7,(ix+9) + res 7,(iy+9) + res 7,a + res 7,b + res 7,c + res 7,d + res 7,e + res 7,h + res 7,l + ret + ret c + ret m + ret nc + ret nz + ret p + ret pe + ret po + ret z + reti + retn + rl (hl) + rl (ix+9) + rl (iy+9) + rl a + rl b + rl c + rl d + rl e + rl h + rl l + rla + rlc (hl) + rlc (ix+9) + rlc (iy+9) + rlc a + rlc b + rlc c + rlc d + rlc e + rlc h + rlc l + rlca + rld + rr (hl) + rr (ix+9) + rr (iy+9) + rr a + rr b + rr c + rr d + rr e + rr h + rr l + rra + rrc (hl) + rrc (ix+9) + rrc (iy+9) + rrc a + rrc b + rrc c + rrc d + rrc e + rrc h + rrc l + rrca + rrd + rst 0x00 + rst 0x08 + rst 0x10 + rst 0x18 + rst 0x20 + rst 0x28 + rst 0x30 + rst 0x38 + sbc a,(hl) + sbc a,(ix+9) + sbc a,(iy+9) + sbc a,3 + sbc a,a + sbc a,b + sbc a,c + sbc a,d + sbc a,e + sbc a,h + sbc a,l + sbc hl,bc + sbc hl,de + sbc hl,hl + sbc hl,sp + scf + set 0,(hl) + set 0,(ix+9) + set 0,(iy+9) + set 0,a + set 0,b + set 0,c + set 0,d + set 0,e + set 0,h + set 0,l + set 1,(hl) + set 1,(ix+9) + set 1,(iy+9) + set 1,a + set 1,b + set 1,c + set 1,d + set 1,e + set 1,h + set 1,l + set 2,(hl) + set 2,(ix+9) + set 2,(iy+9) + set 2,a + set 2,b + set 2,c + set 2,d + set 2,e + set 2,h + set 2,l + set 3,(hl) + set 3,(ix+9) + set 3,(iy+9) + set 3,a + set 3,b + set 3,c + set 3,d + set 3,e + set 3,h + set 3,l + set 4,(hl) + set 4,(ix+9) + set 4,(iy+9) + set 4,a + set 4,b + set 4,c + set 4,d + set 4,e + set 4,h + set 4,l + set 5,(hl) + set 5,(ix+9) + set 5,(iy+9) + set 5,a + set 5,b + set 5,c + set 5,d + set 5,e + set 5,h + set 5,l + set 6,(hl) + set 6,(ix+9) + set 6,(iy+9) + set 6,a + set 6,b + set 6,c + set 6,d + set 6,e + set 6,h + set 6,l + set 7,(hl) + set 7,(ix+9) + set 7,(iy+9) + set 7,a + set 7,b + set 7,c + set 7,d + set 7,e + set 7,h + set 7,l + sla (hl) + sla (ix+9) + sla (iy+9) + sla a + sla b + sla c + sla d + sla e + sla h + sla l + sra (hl) + sra (ix+9) + sra (iy+9) + sra a + sra b + sra c + sra d + sra e + sra h + sra l + srl (hl) + srl (ix+9) + srl (iy+9) + srl a + srl b + srl c + srl d + srl e + srl h + srl l + sub (hl) + sub (ix+9) + sub (iy+9) + sub 3 + sub a + sub b + sub c + sub d + sub e + sub h + sub l + xor (hl) + xor (ix+9) + xor (iy+9) + xor 3 + xor a + xor b + xor c + xor d + xor e + xor h + xor l + + ld a,ixh + ld b,ixh + ld c,ixh + ld d,ixh + ld e,ixh + ld ixh,ixh + ld ixl,ixh + + ld a,ixl + ld b,ixl + ld c,ixl + ld d,ixl + ld e,ixl + ld ixh,ixl + ld ixl,ixl + + ld a,iyh + ld b,iyh + ld c,iyh + ld d,iyh + ld e,iyh + ld iyh,iyh + ld iyl,iyh + + ld a,iyl + ld b,iyl + ld c,iyl + ld d,iyl + ld e,iyl + ld iyh,iyl + ld iyl,iyl + + ld ixh,a + ld ixh,b + ld ixh,c + ld ixh,d + ld ixh,e + ld ixh,ixh + ld ixh,ixl + ld ixh,25 + + ld ixl,a + ld ixl,b + ld ixl,c + ld ixl,d + ld ixl,e + ld ixl,ixh + ld ixl,ixl + ld ixl,25 + + ld iyh,a + ld iyh,b + ld iyh,c + ld iyh,d + ld iyh,e + ld iyh,iyh + ld iyh,iyl + ld iyh,25 + + ld iyl,a + ld iyl,b + ld iyl,c + ld iyl,d + ld iyl,e + ld iyl,iyh + ld iyl,iyl + ld iyl,25 + + add a,ixh + add a,ixl + add a,iyh + add a,iyl + + adc a,ixh + adc a,ixl + adc a,iyh + adc a,iyl + + cp ixh + cp ixl + cp iyh + cp iyl + + dec ixh + dec ixl + dec iyh + dec iyl + + inc ixh + inc ixl + inc iyh + inc iyl + + sbc a,ixh + sbc a,ixl + sbc a,iyh + sbc a,iyl + + sub ixh + sub ixl + sub iyh + sub iyl + + and ixh + and ixl + and iyh + and iyl + + or ixh + or ixl + or iyh + or iyl + + xor ixh + xor ixl + xor iyh + xor iyl + + in f,(c) + in (c) + out (c),0 + + RLC (ix+8),a + RLC (ix+8),b + RLC (ix+8),c + RLC (ix+8),d + RLC (ix+8),e + RLC (ix+8),h + RLC (ix+8),l + RLC (iy+8),a + RLC (iy+8),b + RLC (iy+8),c + RLC (iy+8),d + RLC (iy+8),e + RLC (iy+8),h + RLC (iy+8),l + + RRC (ix+8),a + RRC (ix+8),b + RRC (ix+8),c + RRC (ix+8),d + RRC (ix+8),e + RRC (ix+8),h + RRC (ix+8),l + RRC (iy+8),a + RRC (iy+8),b + RRC (iy+8),c + RRC (iy+8),d + RRC (iy+8),e + RRC (iy+8),h + RRC (iy+8),l + + RL (ix+8),a + RL (ix+8),b + RL (ix+8),c + RL (ix+8),d + RL (ix+8),e + RL (ix+8),h + RL (ix+8),l + RL (iy+8),a + RL (iy+8),b + RL (iy+8),c + RL (iy+8),d + RL (iy+8),e + RL (iy+8),h + RL (iy+8),l + + RR (ix+8),a + RR (ix+8),b + RR (ix+8),c + RR (ix+8),d + RR (ix+8),e + RR (ix+8),h + RR (ix+8),l + RR (iy+8),a + RR (iy+8),b + RR (iy+8),c + RR (iy+8),d + RR (iy+8),e + RR (iy+8),h + RR (iy+8),l + + SLA (ix+8),a + SLA (ix+8),b + SLA (ix+8),c + SLA (ix+8),d + SLA (ix+8),e + SLA (ix+8),h + SLA (ix+8),l + SLA (iy+8),a + SLA (iy+8),b + SLA (iy+8),c + SLA (iy+8),d + SLA (iy+8),e + SLA (iy+8),h + SLA (iy+8),l + + SRA (ix+8),a + SRA (ix+8),b + SRA (ix+8),c + SRA (ix+8),d + SRA (ix+8),e + SRA (ix+8),h + SRA (ix+8),l + SRA (iy+8),a + SRA (iy+8),b + SRA (iy+8),c + SRA (iy+8),d + SRA (iy+8),e + SRA (iy+8),h + SRA (iy+8),l + + SLI (ix+8),a + SLI (ix+8),b + SLI (ix+8),c + SLI (ix+8),d + SLI (ix+8),e + SLI (ix+8),h + SLI (ix+8),l + SLI (iy+8),a + SLI (iy+8),b + SLI (iy+8),c + SLI (iy+8),d + SLI (iy+8),e + SLI (iy+8),h + SLI (iy+8),l + + SRL (ix+8),a + SRL (ix+8),b + SRL (ix+8),c + SRL (ix+8),d + SRL (ix+8),e + SRL (ix+8),h + SRL (ix+8),l + SRL (iy+8),a + SRL (iy+8),b + SRL (iy+8),c + SRL (iy+8),d + SRL (iy+8),e + SRL (iy+8),h + SRL (iy+8),l + + RES 0,(ix+8),a + RES 0,(ix+8),b + RES 0,(ix+8),c + RES 0,(ix+8),d + RES 0,(ix+8),e + RES 0,(ix+8),h + RES 0,(ix+8),l + RES 0,(iy+8),a + RES 0,(iy+8),b + RES 0,(iy+8),c + RES 0,(iy+8),d + RES 0,(iy+8),e + RES 0,(iy+8),h + RES 0,(iy+8),l + RES 1,(ix+8),a + RES 1,(ix+8),b + RES 1,(ix+8),c + RES 1,(ix+8),d + RES 1,(ix+8),e + RES 1,(ix+8),h + RES 1,(ix+8),l + RES 1,(iy+8),a + RES 1,(iy+8),b + RES 1,(iy+8),c + RES 1,(iy+8),d + RES 1,(iy+8),e + RES 1,(iy+8),h + RES 1,(iy+8),l + RES 2,(ix+8),a + RES 2,(ix+8),b + RES 2,(ix+8),c + RES 2,(ix+8),d + RES 2,(ix+8),e + RES 2,(ix+8),h + RES 2,(ix+8),l + RES 2,(iy+8),a + RES 2,(iy+8),b + RES 2,(iy+8),c + RES 2,(iy+8),d + RES 2,(iy+8),e + RES 2,(iy+8),h + RES 2,(iy+8),l + RES 3,(ix+8),a + RES 3,(ix+8),b + RES 3,(ix+8),c + RES 3,(ix+8),d + RES 3,(ix+8),e + RES 3,(ix+8),h + RES 3,(ix+8),l + RES 3,(iy+8),a + RES 3,(iy+8),b + RES 3,(iy+8),c + RES 3,(iy+8),d + RES 3,(iy+8),e + RES 3,(iy+8),h + RES 3,(iy+8),l + RES 4,(ix+8),a + RES 4,(ix+8),b + RES 4,(ix+8),c + RES 4,(ix+8),d + RES 4,(ix+8),e + RES 4,(ix+8),h + RES 4,(ix+8),l + RES 4,(iy+8),a + RES 4,(iy+8),b + RES 4,(iy+8),c + RES 4,(iy+8),d + RES 4,(iy+8),e + RES 4,(iy+8),h + RES 4,(iy+8),l + RES 5,(ix+8),a + RES 5,(ix+8),b + RES 5,(ix+8),c + RES 5,(ix+8),d + RES 5,(ix+8),e + RES 5,(ix+8),h + RES 5,(ix+8),l + RES 5,(iy+8),a + RES 5,(iy+8),b + RES 5,(iy+8),c + RES 5,(iy+8),d + RES 5,(iy+8),e + RES 5,(iy+8),h + RES 5,(iy+8),l + RES 6,(ix+8),a + RES 6,(ix+8),b + RES 6,(ix+8),c + RES 6,(ix+8),d + RES 6,(ix+8),e + RES 6,(ix+8),h + RES 6,(ix+8),l + RES 6,(iy+8),a + RES 6,(iy+8),b + RES 6,(iy+8),c + RES 6,(iy+8),d + RES 6,(iy+8),e + RES 6,(iy+8),h + RES 6,(iy+8),l + RES 7,(ix+8),a + RES 7,(ix+8),b + RES 7,(ix+8),c + RES 7,(ix+8),d + RES 7,(ix+8),e + RES 7,(ix+8),h + RES 7,(ix+8),l + RES 7,(iy+8),a + RES 7,(iy+8),b + RES 7,(iy+8),c + RES 7,(iy+8),d + RES 7,(iy+8),e + RES 7,(iy+8),h + RES 7,(iy+8),l + + SET 0,(ix+8),a + SET 0,(ix+8),b + SET 0,(ix+8),c + SET 0,(ix+8),d + SET 0,(ix+8),e + SET 0,(ix+8),h + SET 0,(ix+8),l + SET 0,(iy+8),a + SET 0,(iy+8),b + SET 0,(iy+8),c + SET 0,(iy+8),d + SET 0,(iy+8),e + SET 0,(iy+8),h + SET 0,(iy+8),l + SET 1,(ix+8),a + SET 1,(ix+8),b + SET 1,(ix+8),c + SET 1,(ix+8),d + SET 1,(ix+8),e + SET 1,(ix+8),h + SET 1,(ix+8),l + SET 1,(iy+8),a + SET 1,(iy+8),b + SET 1,(iy+8),c + SET 1,(iy+8),d + SET 1,(iy+8),e + SET 1,(iy+8),h + SET 1,(iy+8),l + SET 2,(ix+8),a + SET 2,(ix+8),b + SET 2,(ix+8),c + SET 2,(ix+8),d + SET 2,(ix+8),e + SET 2,(ix+8),h + SET 2,(ix+8),l + SET 2,(iy+8),a + SET 2,(iy+8),b + SET 2,(iy+8),c + SET 2,(iy+8),d + SET 2,(iy+8),e + SET 2,(iy+8),h + SET 2,(iy+8),l + SET 3,(ix+8),a + SET 3,(ix+8),b + SET 3,(ix+8),c + SET 3,(ix+8),d + SET 3,(ix+8),e + SET 3,(ix+8),h + SET 3,(ix+8),l + SET 3,(iy+8),a + SET 3,(iy+8),b + SET 3,(iy+8),c + SET 3,(iy+8),d + SET 3,(iy+8),e + SET 3,(iy+8),h + SET 3,(iy+8),l + SET 4,(ix+8),a + SET 4,(ix+8),b + SET 4,(ix+8),c + SET 4,(ix+8),d + SET 4,(ix+8),e + SET 4,(ix+8),h + SET 4,(ix+8),l + SET 4,(iy+8),a + SET 4,(iy+8),b + SET 4,(iy+8),c + SET 4,(iy+8),d + SET 4,(iy+8),e + SET 4,(iy+8),h + SET 4,(iy+8),l + SET 5,(ix+8),a + SET 5,(ix+8),b + SET 5,(ix+8),c + SET 5,(ix+8),d + SET 5,(ix+8),e + SET 5,(ix+8),h + SET 5,(ix+8),l + SET 5,(iy+8),a + SET 5,(iy+8),b + SET 5,(iy+8),c + SET 5,(iy+8),d + SET 5,(iy+8),e + SET 5,(iy+8),h + SET 5,(iy+8),l + SET 6,(ix+8),a + SET 6,(ix+8),b + SET 6,(ix+8),c + SET 6,(ix+8),d + SET 6,(ix+8),e + SET 6,(ix+8),h + SET 6,(ix+8),l + SET 6,(iy+8),a + SET 6,(iy+8),b + SET 6,(iy+8),c + SET 6,(iy+8),d + SET 6,(iy+8),e + SET 6,(iy+8),h + SET 6,(iy+8),l + SET 7,(ix+8),a + SET 7,(ix+8),b + SET 7,(ix+8),c + SET 7,(ix+8),d + SET 7,(ix+8),e + SET 7,(ix+8),h + SET 7,(ix+8),l + SET 7,(iy+8),a + SET 7,(iy+8),b + SET 7,(iy+8),c + SET 7,(iy+8),d + SET 7,(iy+8),e + SET 7,(iy+8),h + SET 7,(iy+8),l + +;SLI + sli a + sli b + sli c + sli d + sli e + sli h + sli l + sli (hl) + sli (ix+7) + sli (iy-9) + +;SLL is an alias for SLI + sll a + sll b + sll c + sll d + sll e + sll h + sll l + sll (hl) + sll (ix+7) + sll (iy-9) + +;SL1 is an alias for SLI + sl1 a + sl1 b + sl1 c + sl1 d + sl1 e + sl1 h + sl1 l + sl1 (hl) + sl1 (ix+7) + sl1 (iy-9) + +;Z80N specific + ldix + ldws + ldirx + lddx + lddrx + ldpirx + outinb + mul d,e + add hl,a + add de,a + add bc,a + add hl,0xbeaf + add de,0xdead + add bc,0x1234 + swapnib + mirror + push 0x1234 + nextreg 0x12,0x34 + nextreg 0x56,a + pixeldn + pixelad + setae + test 0x78 + bsla de,b + bsra de,b + bsrl de,b + bsrf de,b + brlc de,b + jp (c) + + .globl push_value + push push_value +;Z80N aliases + mlt de + swap a + tst 0xab + .end diff --git a/gas/testsuite/gas/z80/z80n_reloc.d b/gas/testsuite/gas/z80/z80n_reloc.d new file mode 100644 index 0000000..8fa78e1 --- /dev/null +++ b/gas/testsuite/gas/z80/z80n_reloc.d @@ -0,0 +1,10 @@ +#as: -z80n +#source: z80n_all.s +#objdump: -r +#name: Z80N big-endian relocation + +.*:[ ]+file format (coff|elf32)\-z80 + +RELOCATION RECORDS FOR \[\.text\]: +OFFSET[ ]+TYPE[ ]+VALUE\s* +0*c2a[ ]+r_imm16be[ ]+push_value\s* |