Home | History | Annotate | Download | only in z80
      1 ;;;  various instructions involving offsets
      2 
      3 	.section .text
      4 	.org 0
      5 10:
      6 	jr 1f
      7 	inc (ix+5)
      8 	dec (iy-1)
      9 	ld a,(ix-128)
     10 	ld (iy+127),a
     11 	djnz 10b
     12 	jr z,2f
     13 	jr c,3f
     14 2:
     15 	jr nz,3f
     16 	jr nc,2b
     17 3:
     18 	ld (ix+34),9
     19 	ld (iy-34),-9
     20 	rr (ix+55)
     21 	rl (iy-55)
     22 	.balign 0x80
     23 1:
     24