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

📄 mem.cpp

📁 本软件实现了模拟cpu的基本工作原理和工作过程
💻 CPP
字号:
// MEM.cpp: implementation of the MEM class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "AM.h"
#include "MEM.h"

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

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

MEM::MEM():	AR(CRect(845,55,912,85),"AR:"),
			MEMERY(CRect(845,100,953,253),"内存:")
{
	GAR.x=872;
	GAR.y=21;
	GAR.w=12;
	GAR.h=34;
	GAR.type=1;
	GAR.arrow1=0;
	GAR.arrow2=1;
	GAR.shine=0;

	WRITE.x=920;
	WRITE.y=21;
	WRITE.w=12;
	WRITE.h=79;
	WRITE.type=1;
	WRITE.arrow1=0;
	WRITE.arrow2=1;
	WRITE.shine=0;

	READ.x=935;
	READ.y=22;
	READ.w=12;
	READ.h=79;
	READ.type=1;
	READ.arrow1=1;
	READ.arrow2=0;
	READ.shine=0;
}

⌨️ 快捷键说明

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