repl.py

来自「linux下基于c++的处理器仿真平台。具有处理器流水线」· Python 代码 · 共 11 行

PY
11
字号
from m5 import *class Repl(SimObject):    type = 'Repl'    abstract = Trueclass GenRepl(Repl):    type = 'GenRepl'    fresh_res = Param.Int("associativity")    num_pools = Param.Int("capacity in bytes")    pool_res = Param.Int("block size in bytes")

⌨️ 快捷键说明

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