User Tools

Site Tools


uphl

This is an old revision of the document!


uphl

uphl     inc  h                 
         ld   a,h               
         and  7                 
         ret  nz                
         ld   a,l               
         add  a,32              
         ld   l,a               
         ld   a,h               
         ret  c                 
         sub  8                 
         ld   h,a               
         ret

Slower alternative:

uphl      ld   a,h               
          dec  h                 
          and  7                 
          ret  nz                
          ld   a,l               
          sub  32                
          ld   l,a               
          ld   a,h               
          jr   c,uphl2           
          add  a,8               
          ld   h,a               
uphl2     cp   64                
          ret  nc                
          ld   h,87               
          ret

Navigation: general . math . graphic . sound . system . other . back to start

uphl.1357846453.txt.gz · Last modified: 2013/01/10 20:34 by darkbyte