summaryrefslogtreecommitdiff
path: root/test.z80
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2006-08-27 23:55:35 +0000
committerIan C <ianc@noddybox.co.uk>2006-08-27 23:55:35 +0000
commit71d7c02771511b9d9af0f1cd0f368867da84d864 (patch)
tree90967d4d1fc0842be82086f494967a1d35b8e4e2 /test.z80
parent5842d9210a6718acb4b072dfaa2550245ed7f464 (diff)
Added locally build versions of the Z80 exercisers
Diffstat (limited to 'test.z80')
-rw-r--r--test.z8032
1 files changed, 0 insertions, 32 deletions
diff --git a/test.z80 b/test.z80
deleted file mode 100644
index 89c2c1e..0000000
--- a/test.z80
+++ /dev/null
@@ -1,32 +0,0 @@
-;
-; Odd random tests
-;
- org 0
-
- 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
-loop:
- add ix,bc
- jr loop