blob: 7923f28f16aa37d1d177b7ffd375da96a8264f8b (
plain)
1
2
3
4
5
6
7
8
|
from m5.params import *
from m5.SimObject import SimObject
class RubyProfiler(SimObject):
type = 'RubyProfiler'
cxx_class = 'Profiler'
hot_lines = Param.Bool(False, "")
all_instructions = Param.Bool(False, "")
|