intlinux.h
来自「< 虚拟机设计与实现> 的source code, linux版本」· C头文件 代码 · 共 26 行
H
26 行
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ +
+ 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 _INTLINUX_H
#define _INTLINUX_H
#include "common.h"
#ifdef OS_WIN
#include "win32.h"
#else
#include "linux.h"
#endif
void handlefileIO();
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?