📄 trace.py
字号:
from m5 import *class Trace(ParamContext): type = 'Trace' flags = VectorParam.String([], "categories to be traced") start = Param.Tick(0, "cycle to start tracing") bufsize = Param.Int(0, "circular buffer size (0 = send to file)") file = Param.String('cout', "trace output file") dump_on_exit = Param.Bool(False, "dump trace buffer on exit") ignore = VectorParam.String([], "name strings to ignore")
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -