66
Sample Code:
#1 : Get GPI 0 status
; Enable config mode
mov dx, SIO_INDEX_Port
mov al, SIO_UnLock_Value
out dx, al
jmp short $+2 ;Io_delay
jmp short $+2 ;Io_delay
out dx, al
A-3
; Switch GPIO Configuration for SIO LDN 0x06
mov dx, SIO_INDEX_Port
mov al, 07h
out dx, al
mov dx, SIO_DATA_Port
mov al, SIO_LDN_GPIO
out dx, al
; Get GPI 0 Pin Status Register
mov dx, SIO_INDEX_Port
mov al, SIO_GPI_Status
out dx, al
mov dx, SIO_DATA_Port
in al, dx ;al bit0 = GPI 0 status
; Exit SIO
mov al, SIO_CONFIG_MODE_EXIT_VALUE
out dx, al
#2 : Set GPO 0/GPO 2 to high status
; Enable config mode
mov dx, SIO_INDEX_Port
mov al, SIO_UnLock_Value
out dx, al