Sixteen bit counter with a Constant Loop Delay
by: Marc Heuler from: http://www.myke.com/basic.htm
movlw HIGH TimeDelay ; Load the Delay Values movwf HiCount movlw LOW TimeDelay Dlay: addlw 1 ; Increment the Counter by 1 btfsc STATUS, Z decfsz HiCount, f ; Decrement the High Counter goto Dlay
This loop takes five cycles to execute, regardless of whether or not "HiCount" is to be decremented.
The actual time delay is calculated using the sixteen bit number from:
Time Dlay = (16BitDlay * 5 ins/loop * 4 clocks/ins / clock frequency) + 256
file: /Techref/microchip/math/incdec/16bitiso-mh.htm, 1KB, , updated: 2004/12/6 11:14, local time: 2024/11/17 11:30,
3.15.4.204:LOG IN
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/microchip/math/incdec/16bitiso-mh.htm"> PIC Microcontoller Math Method Increment Sixteen bit counter with a Constant Loop Delay</A> |
Did you find what you needed? |