我正在使用 Borland C++ 5.02,我试图在 C++ 程序中制作 ROM BIOS 中断。(我使用 REGS 和 regs)。但是当我编译程序时,它说未定义的结构 REGS(对于所有中断)。
int numlock() {
union REGS in,out;
in.h.ah=2;
int86(0x16,&in,&out);
return out.h.al;
}
union REGS in,out; //**error line**
我正在使用 Borland C++ 5.02,我试图在 C++ 程序中制作 ROM BIOS 中断。(我使用 REGS 和 regs)。但是当我编译程序时,它说未定义的结构 REGS(对于所有中断)。
int numlock() {
union REGS in,out;
in.h.ah=2;
int86(0x16,&in,&out);
return out.h.al;
}
union REGS in,out; //**error line**