69
Watchdog time-out pin
For external control purposes, the status of the watchdog
The following example shows how to reset the watchdog
MOV | DX, 110h | ; Control Port |
IN | AL, DX | ; Read actual value |
OR | AL, 04h | ; Mask reserved bits and set bit 2 |
OUT | DX, AL | ; Write new value |
AND | AL, FBh | ; Mask reserved bits and reset bit 2 |
OUT | DX, AL | ; Write new value |
69