bus.hh
来自「一个mips虚拟机非常好代码,使用C++来编写的,希望大家多学学,」· HH 代码 · 共 35 行
HH
35 行
#ifndef mips64_bus_hh_included#define mips64_bus_hh_included#include <checkpoint.hh>#include <clock.hh>#include <bus.hh>#include <cpu.hh>#include <inttypes.hh>#include <mips64/types.hh>#include <module.hh>#include <serial.hh>#include <simarg.hh>// MIPS64Bus describes the external interface of a MIPS64 CPU module.class MIPS64Cpu;class MIPS64Bus : public virtual Bus, public virtual Serializable, public Module, public MIPS64Types{public: // Constructors, etc. MIPS64Bus(const SimArgs& args) : Module(args) { } MIPS64Bus(Checkpoint& cp) : Serializable(cp), Module(cp) { }};#endif // mips64_bus_hh_included
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?