我有一個代碼試圖使用outportb(),但在MinGw上編譯它時,我得到的錯誤。在引用outportb()函數中的問題在C
C:\Users\A_TOMAR\AppData\Local\Temp\ccYPvctv.o:dsp.c:(.text+0x68): undefined reference to `outportb'
#include <stdio.h>
#include <stdlib.h>
#include <dos.h>
int main(void)
{
outportb(0x378,0xFF);
return 0;
}
我想知道哪些頭文件是有這個特定的功能?
'outportb'是DOS時代錯誤 - 即使你可以得到這個編譯不會比Windows 98更新。 –
我如何實現與使用MinGW.I在windows7上提供的outportb相同的功能!! –
如果您嘗試訪問並行端口,則需要使用更合適的Windows API。 –