.................... #int_TIMER0
.................... TIMER0_isr()
.................... {
.................... TMR0L = 237;
*
013A: MOVLW ED
013C: MOVWF FD6
.................... --tmr_ms;
013E: DECF 17,F
.................... ++aux_ms;
0140: INCF 1A,F
.................... if( aux_ms >= 1000 )
.................... {
.................... if( bit_test( PORTA,4 ))
.................... bit_clear( PORTA,4 );
.................... else
.................... bit_set( PORTA,4 );
.................... aux_ms = 0;
.................... --tmr_s;
.................... ++aux_s;
.................... if( aux_s >= 60 )
.................... {
.................... aux_s = 0;
.................... --tmr_m;
.................... ++aux_m;
.................... }
.................... }
.................... }
....................
0142: BCF FF2.2
0144: GOTO 0060