diff options
Diffstat (limited to 'sw-z80/hello/hello.s')
-rw-r--r-- | sw-z80/hello/hello.s | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sw-z80/hello/hello.s b/sw-z80/hello/hello.s new file mode 100644 index 0000000..d5d3323 --- /dev/null +++ b/sw-z80/hello/hello.s @@ -0,0 +1,9 @@ +org 100h +jp .loop + +.loop: + ; main loop code + ld a,1 + jp .loop + +halt |