Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     LIST P=18F87J11     ;Definovani procesoru
  2.     #include <P18F87J11.INC>
  3.  
  4. ;******************************************************************************
  5. ;Konfiguracni bity
  6.  
  7. CONFIG FOSC = HS    ;High speed crystal ?
  8. CONFIG WDTEN = OFF  ;Watchdog disabled
  9. CONFIG XINST = OFF  ;Instruction set extension disabled
  10.  
  11. udata_acs   0x000
  12.  
  13. A res 1
  14. B res 1
  15. Y res 2
  16. i res 1
  17.  
  18. ORG     0x0000
  19. GOTO    Main
  20.  
  21. Main:
  22.  
  23. movlw b'00000000'
  24. movwf Y+1
  25.  
  26. movlw b'00000000'
  27. movwf Y
  28.  
  29. movf B, 0
  30. movwf Y
  31.  
  32. movlw 0x08
  33. movwf i
  34.  
  35. Cyklus:
  36. btfsc Y, 0
  37. goto Soucet
  38. goto Shifter
  39.  
  40. Soucet:
  41. movf A, 0
  42. addwf Y+1, 1
  43. goto Shifter
  44.  
  45. Shifter:
  46. rrcf Y+1, 1
  47. rrcf Y, 1
  48. bcf STATUS, C
  49.  
  50. decfsz i, 1
  51. goto Cyklus
  52.  
  53. Loop: goto Loop
  54.  
  55. END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement