From 665e1cabd8acee86ea3865e0a38467dec52e6f66 Mon Sep 17 00:00:00 2001 From: Ian C Date: Sat, 26 Aug 2006 00:50:13 +0000 Subject: Updates --- test.z80 | 33 ++++++++++++++++++++++++--------- 1 file changed, 24 insertions(+), 9 deletions(-) (limited to 'test.z80') diff --git a/test.z80 b/test.z80 index f43eea0..89c2c1e 100644 --- a/test.z80 +++ b/test.z80 @@ -3,15 +3,30 @@ ; org 0 - ld hl,$1234 + ld bc,1 + ld de,2 + ld hl,3 + ld ix,4 + ld iy,5 + + push af + push bc + push de push hl + push ix + push iy + add a,80 + ld bc,$ffff + ld de,$ffff + ld hl,$ffff + ld ix,$ffff + ld iy,$ffff + pop iy + pop ix + pop hl + pop de + pop bc pop af - ld bc,$5678 - ld de,$9abc - ld hl,$def0 - ld ix,$dead - ld iy,$beef - loop: - inc b - jp loop + add ix,bc + jr loop -- cgit v1.2.3