Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
Member Avatar for mfierro

I am having trouble when trying to send information through the PC parallel port. I am using the following code to try to send data: #include <stdio.h> #include <asm/io.h> #include <unistd.h> int main(void){ ioperm( 0x378, 1, 1 ); outb( 0x378, 0xAA ); sleep( 2000 ); outb( 0x378, 0x55 ); sleep( …

Member Avatar for kedarm
0
1K