在 C 中引用 outportb() 函数时出现问题

发布于 2024-12-03 01:17:14 字数 364 浏览 3 评论 0原文

我有一个代码试图使用 outportb(),但是在 MinGw 上编译它时出现以下错误。

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;
} 

我想知道哪个头文件有这个特定的功能?

I have a code in which am trying to use outportb(), but while compiling it on MinGw i am getting below error.

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;
} 

I would like to know which header file is having this particular function?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱已欠费 2024-12-10 01:17:14
  1. Windows 不提供对硬件的访问。您应该使用 Win32 API 调用。
  2. 此函数是 DOS 特定的,在 Windows 中不可用

谷歌搜索显示您的解决方案是 inpout32.dll (示例奇怪的字体颜色

  1. Windows doesn't provide access to a hardware. You should use Win32 API calls.
  2. This function is DOS specific and unavailable in Windows

Googling shows that your solution is inpout32.dll (example with weird font color)

诗笺 2024-12-10 01:17:14
#include <pc.h>
void outportb(unsigned short _port, unsigned char  _data);
#include <pc.h>
void outportb(unsigned short _port, unsigned char  _data);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文