diff options
Diffstat (limited to 'src/sim/ClockedObject.py')
-rw-r--r-- | src/sim/ClockedObject.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/sim/ClockedObject.py b/src/sim/ClockedObject.py index 8bc4031a4..2562f1f01 100644 --- a/src/sim/ClockedObject.py +++ b/src/sim/ClockedObject.py @@ -44,7 +44,6 @@ class ClockedObject(SimObject): abstract = True cxx_header = "sim/clocked_object.hh" - # Clock period of this object, with the default value being the - # clock period of the parent object, unproxied at instantiation - # time - clock = Param.Clock(Parent.clock, "Clock speed") + # The clock domain this clocked object belongs to, inheriting the + # parent's clock domain by default + clk_domain = Param.ClockDomain(Parent.clk_domain, "Clock domain") |