Nexus 0 Report post Posted September 11, 2006 Hello, I have aquestion: how can I "preload" TMR0 so I can make an exact timer? In machine code it was: MOVLW 038h ;Preload counter with 14 mSec MOVWF TMR0 LOOP BTFSS INTCON,2 ;Everey 50 mSec timer overflows GOTO LOOP BCF INTCON,2 ;Every 50 mSec program runs from here MOVLW 038h ;Preload timer again with 14 mSec MOVWF TMR0 How do I do this in P2C? (pascal) Thank You in Advance. Nexus Quote Share this post Link to post Share on other sites
Pavel 0 Report post Posted September 12, 2006 Use variables with absolute addresses as described in the P2C compiler help. Regards, Pavel Quote Share this post Link to post Share on other sites
Nexus 0 Report post Posted September 12, 2006 OK.. Thanks Pavel. Quote Share this post Link to post Share on other sites