I'm using a ADuC7026. I'm using timer 1 as a counter (i.e. I want to have it count up to some number and then reset the count to zero). To reset the count, I execute the following lines:
T1LD = 0x000; // Set the load value to zero T1CON = 0x0C0; // HCLK, count down T1CON = 0x7C0; // P0.6 source, count up