mos_inth.h

来自「用VC编写的一个微型操作系统」· C头文件 代码 · 共 32 行

H
32
字号
// Mos_inth.h: interface for the CMos_inth class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_MOS_INTH_H__7BC0B3F8_EBA7_413C_871E_D9FA14A1ABEC__INCLUDED_)
#define AFX_MOS_INTH_H__7BC0B3F8_EBA7_413C_871E_D9FA14A1ABEC__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Mos_proc.h"
class CMos_inth  
{
public:
	CMos_inth();
	virtual ~CMos_inth();
	void interrupt_handle();
protected:
	void ResetIORBHead(iorbtype* &head,iorbtype* &tail);
	void ioi_handle(int &ioi);
	void ti_handle(int &ti);
	void si_handle(int &si);
	void pi_handle(int &pi);
	void WL(int &addr);
	void RL(int &addr);
private:
	CMos_UI m_UI;
	CMos_proc mos_proc;
};

#endif // !defined(AFX_MOS_INTH_H__7BC0B3F8_EBA7_413C_871E_D9FA14A1ABEC__INCLUDED_)

⌨️ 快捷键说明

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