本软件实现了汇编语言级虚拟机的模拟
源代码在线查看: input.cpp
// 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