Owner manual
Table Of Contents
- Revision
- Copyright
- Manual Conventions
- Packing List
- Table of Contents
- List of Figures
- List of Tables
- BIOS Menus
- 1 Introduction
- 2 Specifications
- 3 Unpacking
- 4 Installation and Configuration
- 4.1 Installation Precautions
- 4.2 Preinstalled Components
- 4.3 Installation and Configuration Steps
- 4.4 Remove the Back Cover
- 4.5 Jumper Settings
- 4.6 Drive Installation
- 4.7 Mounting the System
- 4.8 External Peripheral Interface Connectors
- 5 BIOS Setup
- 5.1 Introduction
- 5.2 Main
- 5.3 Advanced
- 5.4 PCI/PnP
- 5.5 Boot
- 5.6 Security
- 5.7 Chipset
- 5.8 Exit
- 6 Software Installation
- 7 System Maintenance
- A BIOS Options
- B Terminology
- C Digital I/O Interface
- D Watchdog Timer
- E Address Mapping
- F Compatibility
- G Hazardous Materials Disclosure
- Index

PPC-5xxx-9455 Panel PC
Page 164
NOTE:
When exiting a program it is necessary to disable the Watchdog Timer,
otherwise the system resets.
EXAMPLE PROGRAM:
; INITIAL TIMER PERIOD COUNTER
;
W_LOOP:
;
MOV AX, 6F02H ;setting the time-out value
MOV BL, 30 ;time-out value is 48 seconds
INT 15H
;
; ADD THE APPLICATION PROGRAM HERE
;
CMP EXIT_AP, 1 ;is the application over?
JNE W_LOOP ;No, restart the application
MOV AX, 6F02H ;disable Watchdog Timer
MOV BL, 0 ;
INT 15H
;
; EXIT ;