Hi Mr. Legg,
I found the Answer ...Here is a piece of code which change the value of WDT reset value
/* Initialize watchdog with ~1-kHz clock source, ~1s time-out */
DisableInterrupts; // disable global interrupt
WDOG_CNT = 0xC520; // write the 1st unlock word
WDOG_CNT = 0xD928; // write the 2nd unlock word
WDOG_TOVAL = 1000; // setting timeout value
WDOG_CS2 = WDOG_CS2_CLK_MASK; // setting 1-kHz clock source
WDOG_CS1 = WDOG_CS1_EN_MASK; // enable counter running
EnableInterrupts; // enable global interrupt
as soon as i put in my code it has started working fine...i got this in data sheet :smileyhappy:
Anyways may be it's helpful for others and thanks a lot once again.