000
03.04.2008, 10:22 Uhr
~monia
Gast
|
#define _WIN32_WINNT 0x0401 #include <dos.h> #include <stdio.h> #include <conio.h> #define PORT1 0x3F8
void main(void) { int c; int ch; outportb(PORT1 + 1 , 0); outportb(PORT1 + 3 , 0x80); outportb(PORT1 + 0 , 0x03); outportb(PORT1 + 1 , 0x00); outportb(PORT1 + 3 , 0x0B); outportb(PORT1 + 2 , 0xC7); outportb(PORT1 + 4 , 0x0B);
printf("\nSample Comm's Program. Press ESC to quit \n");
do { c = inportb(PORT1 + 5); /* received. */ if (c & 1) {ch = inportb(PORT1); printf("%c",ch);} if (kbhit()){ch = getch(); outportb(PORT1, ch);} } while (ch !=27); }
und hier die Fehlermeldungen:
CProjekt\new\ports.cpp(15) : error C2065: 'outportb' : undeclared identifier CProjekt\new\ports.cpp(25) : error C2065: 'inportb' : undeclared identifier Error executing cl.exe.
kann da jemand helfen danke im voraus |