Advertisement
em00k

Untitled

Oct 18th, 2020 (edited)
1,277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. CLSLayer2:
  2.         ; d = colour to clear with
  3.         ld bc,$123b            
  4.         in a,(c)               
  5.         push af                
  6.         ld a,1
  7.         out (c),a                          
  8.         ld  e,3                
  9.         ld  a,1                
  10.         ld  bc, $123b      
  11.     RepeatLoop:
  12.         out (c),a              
  13.         push    af                             
  14.         ld  hl,0
  15.     ClearLoop:     
  16.         ld  (hl),d
  17.         inc l
  18.         jr  nz,ClearLoop
  19.         inc h
  20.         ld  a,h
  21.         cp  $40
  22.         jr  nz,ClearLoop
  23.         pop af                 
  24.         add a,$40
  25.         dec e                  
  26.         jr  nz,RepeatLoop
  27.         ld  bc,$123b           
  28.         pop af
  29.         out (c),a  
  30.         ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement