This question was awarded, but never cleared due to the JSP-500 errors of that time. It was "stuck" against userID -1 versus the intended expert whom you awarded. This corrects the problem and the expert will now receive these points; points verified.
Please click on your Member Profile and select "View Question History" to navigate through any open or locked questions you may have to update and finalize them.
This is the Community Support link, if help is needed, along with the link to All Topics since many new ones were recently added.
http://www.experts-exchang
http://www.experts-exchang
Thanks,
Moondancer
Moderator @ Experts Exchange
Main Topics
Browse All Topics





by: gurpreetsPosted on 1999-02-01 at 03:01:56ID: 1296440
outw and outb are used to write to an I/O port.
In order to use these functions, you will have to include the header files -
sys/ddi.h
sys/sunddi.h
The syntax is -
void outb (int port, unsigned char value);
void outw (int port, unsigned short value);
These routines write data of various sizes to the I/O port with the address specified by the port.
outb and outw write 8 bits and 16 bits of data, respectively.