blob: f6a4da6f8d4c9af9054f4e2ce530177d0d4e324a (
plain)
1
2
3
4
5
6
7
8
9
|
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, "")
num_of_sequencers = Param.Int("")
|