| 
 All about PIC microcontrollers
 
 Within these pages, you can find many useful pieces of code mostly in assembly for the Microchip PIC micro controller family. A lot of people have spend many hours trying to put the bits and bytes together. If the code is NOT written by a member of the PCB Heaven community, then a link will be added above the code with the original website that this code was found.
 Because the code is copied to our servers, you should know that:
 
 
 
The responsible web master of the website that the code is taken, has been informed and he has agreed to copy the codeAll emails from the above contact have been kept as records but due to personal privacy cannot be shown in public. The author of the code is always clearly indicated above the code. In some cases the author is unknown. If you happen to be the author of the code or you know the person who wrote it, please inform us by email and it will be added ASAP. We would personally like to send the credits to all the people that managed to write some very interesting code and publish it, and special thanx to the people that originally hosted those code snippets and gave us the permission to copy them.
 
 
 View code
 8 bit fast
 Author: Nikolai Golovchenko
 This code was originally located @ http://www.piclist.com
 
 
 Follow this link to go back
 
 
 | ;********************************************************************** ;FAST 8 BIT SQUARE ROOT
 ;
 ;Author: Nikolai Golovchenko
 ;Date: February 15, 2000
 ;
 ;Input and output in w
 ;ROM - 53
 ;RAM - 0
 ;Timing - 15..19 cycles including call and return
 ;**********************************************************************
 Sqrt8f
 addlw -64       ;1
 skpnc
 goto sqrt8_15  ;3
 addlw (64-16)
 skpnc
 goto sqrt4_7   ;6
 addlw (16-4)
 skpnc
 goto sqrt2_3   ;9
 addlw (4-1)
 skpnc
 retlw 1                ;1 (15)
 retlw 0                 ;0 (16)
 sqrt2_3
 addlw (4-9)
 skpnc
 retlw 3                ;3 (16)
 retlw 2                 ;2 (17)
 sqrt4_7
 addlw (16-36)
 skpnc
 goto sqrt6_7   ;10
 addlw (36-25)
 skpnc
 retlw 5                ;5 (16)
 retlw 4                 ;4 (17)
 sqrt6_7
 addlw (36-49)
 skpnc
 retlw 7                ;7 (17)
 retlw 6                 ;6 (18)
 sqrt8_15
 addlw (64-144)
 skpnc
 goto sqrt12_15 ;7
 addlw (144-100)
 skpnc
 goto sqrt10_11 ;10
 addlw (100-81)
 skpnc
 retlw 9                ;9 (16)
 retlw 8                 ;8 (17)
 sqrt10_11
 addlw (100-121)
 skpnc
 retlw 11               ;11 (17)
 retlw 10                ;10 (18)
 sqrt12_15
 addlw (144-196)
 skpnc
 goto sqrt14_15 ;11
 addlw (196-169)
 skpnc
 retlw 13               ;13 (17)
 retlw 12                ;12 (18)
 sqrt14_15
 addlw (196-225)
 skpnc
 retlw 15               ;15 (18)
 retlw 14                ;14 (19)
 ;**********************************************************************
 | 
 Follow this link to go back
 
 
 
 
 
 
 | 
 
 
 
 |  HOT in heaven! 
 
   | 
 
 |