[Overview][Constants][Types][Procedures and functions][Variables][Index] |
Write byte to I/O port
Source position: go32.pp line 166
procedure outportb( |
port: Word; |
data: Byte |
); |
Sends 1 byte of data to the specified I/O port.
Parameters:
Return values: None.
None.
|
Read byte from I/O port |
|
|
Write longint to I/O port |
|
|
Write word to I/O port |
uses crt, go32; begin outportb($61, $ff); delay(50); outportb($61, $0); end.