Advertisement
Zeda

SqrtHL

Jan 4th, 2012
474
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;===============================================================
  2. ;*As a note, "8 cycle routine" means that the algorithm runs
  3. ;8 times. After that, cycle refers to clock cycles.
  4. ;
  5. ;This routine was written for the Z80 processor on 30 May 2011.
  6. ;This is a simple, fast, 8 cycle routine to find the square root
  7. ;of hl. If you would like an explanation of the algorithm, or
  8. ;if you have any other questions, you can contact me at:
  9. ;
  10. ;This is a simple derivation of how I learned it by hand and is
  11. ;much easier in binary :)
  12. ;
  13. ;There are plenty of ways to vary this such as returning a
  14. ;rounded result, returning the z flag set if it is a perfect
  15. ;square, returning the result in bc, returning cubed roots, et
  16. ;cetera.
  17. ;
  18. ;To use this, copy this to the program that needs it and then
  19. ;use "call SqrtHL" as needed :)
  20. ;===============================================================
  21.  
  22. SqrtHL:
  23. ;===============================================================
  24. ;Inputs:
  25. ;     hl is the value to find the square root of
  26. ;Outputs:
  27. ;     a is the square root (the integer part)
  28. ;     bc is not changed
  29. ;     de is not changed
  30. ;     hl is 0
  31. ;     interrupts are turned off
  32. ;Shadow Registers:
  33. ;     a' is not changed
  34. ;     b' is 0
  35. ;     c' is not changed
  36. ;     h'l' is the remainder (the original value minus a^2)
  37. ;Destroys:
  38. ;     d'e'
  39. ;===============================================
  40. ;mnemonic                size  cycles    total
  41. ;===============================================
  42.      di                  ;1      4         4
  43.      exx                 ;1      4         4
  44.      xor a               ;1      4         4
  45.      ld h,a              ;1      4         4
  46.      ld l,a              ;1      4         4
  47.      ld b,8              ;2      7         7
  48. sqrtHLLoop:                                  
  49.        rlca              ;1      4        32
  50.        ld d,0            ;2      7        56
  51.        ld e,a            ;1      4        32
  52.        ex de,hl          ;1      4        32
  53.        add hl,hl         ;1     11        88
  54.        inc l             ;1      4        32
  55.        ex de,hl          ;1      4        32
  56.                                            
  57.        exx               ;1      4        32
  58.        add hl,hl         ;1     11        88
  59.        exx               ;1      4        32
  60.        adc hl,hl         ;2     15       120
  61.                                            
  62.        exx               ;1      4        32
  63.        add hl,hl         ;1     11        88
  64.        exx               ;1      4        32
  65.        adc hl,hl         ;2     15       120
  66.                                            
  67.        sbc hl,de         ;2     15       120
  68.        jr c,$+5          ;5    12|23     96+11x
  69.          inc a           ;--    --        --
  70.          jr $+3          ;--    --        --
  71.        add hl,de         ;1     11        88
  72.        djnz sqrtHLLoop   ;2    13|8       99
  73.      exx                 ;1      4         4
  74.      ret                 ;1     10        10
  75. ;
  76. ;Size  : 37 bytes
  77. ;Speed : 1292+11x cycles
  78. ;    x is the number of bits in the result, so speed ranges from
  79. ;    1292 cycles to 1380. To put this into perspective, at the
  80. ;    slowest setting (6MHz), the calculator can run this over
  81. ;    4500 times in a second
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement