Timer8_1INT:
  
//Place user code here
//Set cStatus bit to indicate interrupt has happened
   push	a
   mov	a,01h
   or	[_cStatus],a

//If requested, drop FLM
	tst		[_cStatus],02h
	jz		skip1
	
//Delay so FLM goes to negative after LP
	mov		a,48
skip2:
	dec		a
	jnz		skip2
	
	and		[_cStatus],0fdh

//Clear the bit
	and		reg[PRT0DR],0feh	

//Clear the FLM
skip1:	


   pop	a
   reti