⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 intwin32.h

📁 < 虚拟机设计与实现>>的 windows版本
💻 H
字号:
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+                                                                   +
+  intwin32   - the file has all the win32 interrupt code           +
+            ( native system calls are needed to implement          +
+              basic I/O functionality )                            +
+                                                                   +
+            could not include this stuff in win32.c because        +
+            we make use of system registers and globals which      +
+            are defined later                                      +
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

#ifndef _INTWIN32_H
#define _INTWIN32_H

#include "common.h"

#ifdef OS_WIN
#include "win32.h"
#else
#include "linux.h"
#endif

void handlefileIO();

#endif

⌨️ 快捷键说明

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