alphatlb.py
来自「linux下基于c++的处理器仿真平台。具有处理器流水线」· Python 代码 · 共 14 行
PY
14 行
from m5 import *class AlphaTLB(SimObject): type = 'AlphaTLB' abstract = True size = Param.Int("TLB size")class AlphaDTB(AlphaTLB): type = 'AlphaDTB' size = 64class AlphaITB(AlphaTLB): type = 'AlphaITB' size = 48
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?