本软件实现了汇编语言级虚拟机的模拟

源代码在线查看: input.cpp

软件大小: 228 K
上传用户: wuliaowenti
关键词: 软件实现 汇编语言 模拟 虚拟机
下载地址: 免注册下载 普通下载 VIP

相关代码

				// input.cpp : implementation file
				//
				
				#include "stdafx.h"
				#include "HM.h"
				#include "input.h"
				
				#ifdef _DEBUG
				#define new DEBUG_NEW
				#undef THIS_FILE
				static char THIS_FILE[] = __FILE__;
				#endif
				
				/////////////////////////////////////////////////////////////////////////////
				// input dialog
				
				
				input::input(CWnd* pParent /*=NULL*/)
					: CDialog(input::IDD, pParent)
				{
					//{{AFX_DATA_INIT(input)
					//}}AFX_DATA_INIT
				}
				
				
				void input::DoDataExchange(CDataExchange* pDX)
				{
					CDialog::DoDataExchange(pDX);
					//{{AFX_DATA_MAP(input)
					//}}AFX_DATA_MAP
				}
				
				
				BEGIN_MESSAGE_MAP(input, CDialog)
					//{{AFX_MSG_MAP(input)
						// NOTE: the ClassWizard will add message map macros here
					//}}AFX_MSG_MAP
				END_MESSAGE_MAP()
				
				/////////////////////////////////////////////////////////////////////////////
				// input message handlers
							

相关资源