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

📄 diskimage.py

📁 linux下基于c++的处理器仿真平台。具有处理器流水线
💻 PY
字号:
from m5 import *class DiskImage(SimObject):    type = 'DiskImage'    abstract = True    image_file = Param.String("disk image file")    read_only = Param.Bool(False, "read only image")class RawDiskImage(DiskImage):    type = 'RawDiskImage'class CowDiskImage(DiskImage):    type = 'CowDiskImage'    child = Param.DiskImage("child image")    table_size = Param.Int(65536, "initial table size")    image_file = ''

⌨️ 快捷键说明

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