int31_0e.c

来自「freedos32的源代码」· C语言 代码 · 共 24 行

C
24
字号
/* DPMI Driver for FD32: handler for INT 0x31, Service 0x0E * by Luca Abeni *  * This is free software; see GPL.txt */#include<ll/i386/hw-data.h>#ifdef __DEBUG__#include<logger.h>#endif#include "dpmi.h"#include "int31_0e.h"void int31_0E01(union regs *r){#ifdef __DEBUG__  fd32_log_printf("[DPMI] Set FPU Emulation: mode 0x%lx\n", r->d.ebx);#endif  /* This is DPMI 1.0: we don't support it... */  SET_CARRY;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?