Writes 1 byte, determined by value , to the hardware port whose number is given by port
#include <nwconio.h>
unsigned char outp (
int port,
unsighned char value);
(IN) Specifies the hardware port.
(IN) Specifies the character to write.
The value transmitted is returned.
A hardware port is used to communicate with a device. One byte can be read and/ or written from each port, depending upon the hardware. Consult the technical documentation for your computer in order to determine the port numbers for a device and the expected usage of each port for a device.
#include <nwconio.h
main ()
{
/* turn off speaker */
outp (0x61,inp (0x61) & 0xFC);
}