Aplex Technology AHM-6086A User Manual
Page 56

AHM-6XX6A User Manual
55
Example x86 assembly code:
mov dx, 4Eh
mov al, 0E5h ;GPIO data reg.
out dx, al
mov dx, 4Fh
in al, dx ;Bit[3::0] = GPI[3::0] value
Example C code:
outportb(0x4E, 0xE5); //GPIO data reg.
GP = inportb(0x4F); //Bit[3::0] = GPI[3::0]
Write GPIO value
Example x86 assembly code:
;Set GPO62
mov dx, 4Eh
mov al, 0E5h ;GPIO data reg.
out dx, al
mov dx, 4Fh
in al, dx
or al, 00000100b ;Bit2 = GPO62
out dx, al
;Clear GPO62
mov dx, 4Eh
mov al, 0E5h ;GPIO data reg.
out dx, al
mov dx, 4Fh
in al, dx
and al, not 00000100b
out dx, al
Example C code:
//Set GPO62
outportb(0x4E, 0xE5); //GPIO data reg.
Outportb(0x4F, (inportb(0x4F)|0x4)); //Set Bit[2]
//Clear GPO62
outportb(0x4E, 0xE5); //GPIO data reg.
Outportb(0x4F, (inportb(0x4F)&0xFB)); //Clear Bit[2]