Return registers:
None
Comments:
This function strobes the watchdog. Once
the watchdog is enabled, it has to be strobed
at least twice per timeout period specified or
until the watchdog is disabled. Otherwise, a
system reset will occur.
Programming example: /* Inline assembly code for Borland C++ 3.1 */
asm
{
movax,0fd02h
movdx,0ffffh
int17h
}
Disable watchdog
Function 0fdh
Sub-Function 03h
Purpose:
To disable the watchdog
Calling Registers:
AH 0fdh
AL
03h
DX
0ffffh
Return Registers:
None
Comments:
This function disables the watchdog. Once
the watchdog is enabled, it has to be strobed
at least twice per timeout period specified or
until the watchdog is disabled. Otherwise, a
system reset will occur.
Programming example: /* Inline assembly code for Borland C++ 3.1 */
asm
{
MOV
AX,
0fd03h
MOV
DX,
0ffffh
INT
17h
}
103