Aaeon GENE-U15B Manual page 44

Subcompact board intel atom z5x0p processor intel system controller hub us15wp 10/100/1000base-tx 1 sata 3.0gb/s, onboard sst ssd 4 com, 6 usb2.0, digital i/o 1 mini card
Hide thumbs Also See for GENE-U15B:
Table of Contents

Advertisement

S u b C o m p a c t B o a r d
The following is a sample code to set WDT for 3 seconds.
;Runtime register I/O base address
SUPERIO_GPIO_PORT
.MODEL
SMALL
.CODE
begin:
;enable WDT
mov dx, SUPERIO_GPIO_PORT + 47h
mov al, 0Ch
out
dx, al
;WDT_TIME_OUT register
mov dx, SUPERIO_GPIO_PORT + 65h
mov al, 80h
out
dx, al
;WDT_VAL register
mov dx, SUPERIO_GPIO_PORT + 66h
mov al, 03h
out
dx, al
;exit
mov ah,4ch
int
21h
END begin
Appendix A Programming the Watchdog Timer A-4
G E N E - U 1 5 B
EQU 800h
;unit is second
;3 seconds

Advertisement

Table of Contents
loading

Table of Contents