BIOS.h
bios.h
BIOS.h是C语言里的一些头文件,包含了很多通用的函数和端口的定义,是为了让你在编写程序的时候方便调用的,在编译的时候会参与编译。
含义
头文件bios.h存放有接口函数,在tc2下应该没问题,如果是在VC下,可能不成功,因为bios.h是在DOS模式下才能调用的,而VC是基于图形、窗口的。库函数:
BIOS.H:这几个函数是经常用到的
int _Cdecl int86(int __intno, union REGS *__inregs, union REGS *__outregs);
int _Cdecl int86x(int __intno, union REGS *__inregs, union REGS *__outregs, struct SREGS *__segregs);
union REGS
struct WORDREGS x;
struct BYTEREGS h;
源代码
参考资料
最新修订时间:2024-08-23 14:42
目录
概述
含义
参考资料