I am trying to write to a port using C. So far I can only send over one char at a time. The following test code is below. #include #include #include #include #include int main() { ioperm(0x3f0, 15, 1); outw(0x56, 0x3F8); } Is there a way to print a string to the port, or is the only way to write an entire string to convert every character to HEX and print that to the port? Ben