10-09-2007, 22:12
|
|
|
|
חבר מתאריך: 17.09.05
הודעות: 6,023
|
|
ניסיתי להפעיל את הקוד הקצר שהם נתנו בC
קוד PHP:
#include <conio.h> #include <dos.h> // For _out #define port 0x378 // Port Address #define data port+0 // Data Port of the parallel cable void main (void) { _out(data, 255); // For all lights on _out(data, 0); // For all lights off }
הקוד לא עובד .... error C2065: '_out' : undeclared identifier
יש אולי מקור יותר מעמיק על הפעלת יציאות LPT דרך C ....
_____________________________________
|