diff options
Diffstat (limited to 'test.z80')
-rw-r--r-- | test.z80 | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test.z80 b/test.z80 new file mode 100644 index 0000000..f43eea0 --- /dev/null +++ b/test.z80 @@ -0,0 +1,17 @@ +; +; Odd random tests +; + org 0 + + ld hl,$1234 + push hl + pop af + ld bc,$5678 + ld de,$9abc + ld hl,$def0 + ld ix,$dead + ld iy,$beef + +loop: + inc b + jp loop |