Forum Discussion
Altera_Forum
Honored Contributor
21 years agooutb()
Hello, Can anyone help me with this simple issue? how to compile such simple test: # include <sys/io.h> int main(void) { ioperm(0x340,0x342,1); outb(0x340,0x0); ...
Altera_Forum
Honored Contributor
21 years agoHello,
outb/ioperm, etc. have no meaning in uCLinux, since it's designed specifically for MMUless processors. I believe that the IORD/IOWR macros will work, just fine, for you. They can be found @: # include <io.h> Cheers, - slacker