![Aaeon XTX-U15B User Manual Download Page 40](http://html1.mh-extra.com/html/aaeon/xtx-u15b/xtx-u15b_user-manual_3370042040.webp)
X T X C P U M o d u l e
X T X - U 1 5 B
Appendix A Programming the Watchdog Timer
A-4
The following is a sample code to set WDT for 3 seconds.
;Runtime register I/O base address
SUPERIO_GPIO_PORT
EQU 800h
.MODEL SMALL
.CODE
begin:
;enable WDT
mov dx, SUPERIO_GPI 47h
mov
al,
0Ch
out
dx,
al
;WDT_TIME_OUT register
mov dx, SUPERIO_GPI 65h
mov al, 80h ;unit is second
out
dx,
al
;WDT_VAL register
mov dx, SUPERIO_GPI 66h
mov al, 03h
;3 seconds
out
dx,
al
;exit
mov
ah,4ch
int
21h
END
begin
Summary of Contents for XTX-U15B
Page 7: ...XTX CPU Module X T X U 1 5 B Chapter 1 General Information 1 1 General Chapter 1 Information...
Page 28: ...XTX CPU Module X T X U 1 5 B Chapter 3 Award BIOS Setup 3 1 Award Chapter 3 BIOS Setup...
Page 32: ...XTX CPU Module X T X U 1 5 B Chapter 4 Driver Installation 4 1 Driver Chapter 4 Installation...
Page 39: ...XTX CPU Module X T X U 1 5 B Appendix A Programming the Watchdog Timer A 3...
Page 41: ...XTX CPU Module X T X U 1 5 B Appendix B I O Information B 1 I O Information Appendix B...
Page 42: ...XTX CPU Module X T X U 1 5 B Appendix B I O Information B 2 B 1 I O Address Map...
Page 43: ...XTX CPU Module X T X U 1 5 B Appendix B I O Information B 3 B 2 1st MB Memory Address Map...