在哪里可以找到 c 编程语言的 dos.h 参考?
我正在寻找 dos.h
API 的参考/文档。 (特别是对于 openwatcom 特定版本)。
从哪里获取文档?
I'm looking for the reference/documentation of the dos.h
API.
(especially for an openwatcom specific version).
Where to get the documentation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
一个合理的起点可能是 OpenWatcom 的库文档。
One reasonable starting point would probably be the library documentation at OpenWatcom.
http://poli.cs.vsb.cz/c/help/dos.htm 几乎可以肯定
不是原创,但无论如何都是一个很好的资源
http://poli.cs.vsb.cz/c/help/dos.htm
Almost certainly not the original but a good resource anyway
使用广泛使用的 int 21h 函数参考,您可以编写自己的 DOS 接口例程,其中参数被加载到例程内的相应寄存器中。
我记得我需要三个函数:一个用于字符 IO(字节寄存器参数),一个用于半复杂(字寄存器参数 - 文件、内存),第三个我已经记不清了:(
这是一个很好的练习!
Using the int 21h function reference widely available you could write your own DOS interface routine where the parameters are loaded into the appropriate registers inside the routine.
As I recall I needed three functions: one for character IO (byte register parameters), one for semi-complex (word register parameters - files, memory) and a third which I can no longer remember :(
It's a good exercise!