基本介紹
- 中文名:int86x
- 函式名: int86x
- 用 法:int int86x
- 功 能: 通用8086軟中斷接口
基本信息,程式例:,
基本信息
函式名: int86x
功 能: 通用8086軟中斷接口
用 法: int int86x(int intr_num, union REGS *insegs, union REGS *outregs,
struct SREGS *segregs);
程式例:
#include <dos.h>
#include <conio.h>
#include <stdio.h>
int main(void)
{
char filename[80];
union REGS inregs, outregs;
struct SREGS segregs;
printf("Enter filename: ");
gets(filename);
inregs.h.ah = 0x43;
inregs.h.al = 0x21;
inregs.x.dx = FP_OFF(filename);
segregs.ds = FP_SEG(filename);
int86x(0x21, &inregs, &outregs, &segregs);
printf("File attribute: %X\n", outregs.x.cx);
return 0;
}