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

📄 dictate.cpp

📁 用VC开发的模拟操作系统的页面置换
💻 CPP
字号:
// Dictate.cpp: implementation of the CDictate class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "WIN页面置换.h"
#include "Dictate.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CDictate::CDictate()
{
m_memoryblock=0;   //指令所在内存块号
m_logicAdress=0;   //逻辑偏移地址
m_physicsAdress=0; //物理地址
m_page=0; ////指令对应的在程序中的页号
}

CDictate::~CDictate()
{

}

⌨️ 快捷键说明

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