Advertisement
Guest User

hello.z80

a guest
Mar 8th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;test.c:7: temp=0;
  2.     ld  hl, 0
  3.     ld  (hl), 00h
  4. ;test.c:8: while(temp<255)
  5. mess1:
  6.     ld  iy,01h
  7.     ld  a, (iy)
  8.     sub a
  9.     jr  NC,mess2
  10. ;test.c:10: temp++;
  11.     inc (iy)
  12.     jr  mess1
  13. mess2:
  14. ;test.c:12: return 0;
  15.     ld  hl, 0000h
  16. ;test.c:13: }
  17.     ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement