summaryrefslogtreecommitdiff
path: root/test.z80
diff options
context:
space:
mode:
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