Advertisement
Guest User

Printputc v1.1

a guest
Apr 29th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; Printputc
  2. ; c == character to print
  3. Printputc:
  4.     ld a, [PrintY]
  5.     ld h, 0
  6.     ld l, a
  7.  
  8.     ; Multipliy y coordinate by 32
  9. rept 5
  10.     add hl, hl
  11. endr
  12.  
  13.     ld a, [PrintX]
  14.     add a, l
  15.     ld l, a
  16.  
  17.     ld de, _SCRN0
  18.     add hl, de
  19.  
  20.     ld [hl], c
  21.     ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement