diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-10-05 16:26:16 -0400 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-10-05 16:26:16 -0400 |
commit | d9172c8f462511cde474040581063180be18540a (patch) | |
tree | 9bff3f3dc9e1ea6d5ee18398d8ca543feb0eb4dc /src/python/m5/objects | |
parent | 51c8eab7b336a6c83e545b741cb975883fe56440 (diff) | |
download | gem5-d9172c8f462511cde474040581063180be18540a.tar.xz |
Partial reimplementation of the bus. The "clock" and "width" parameters have been added, and the HasData flag has been partially added to packets.
--HG--
extra : convert_revision : abb2a259fcf843457abbc0bd36f9504fbe6d7d39
Diffstat (limited to 'src/python/m5/objects')
-rw-r--r-- | src/python/m5/objects/Bus.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/python/m5/objects/Bus.py b/src/python/m5/objects/Bus.py index f6828a0d5..b7c55990c 100644 --- a/src/python/m5/objects/Bus.py +++ b/src/python/m5/objects/Bus.py @@ -6,3 +6,5 @@ class Bus(MemObject): port = VectorPort("vector port for connecting devices") default = Port("Default port for requests that aren't handeled by a device.") bus_id = Param.Int(0, "blah") + clock = Param.Clock("1GHz", "bus clock speed") + width = Param.Int(64, "bus width (bits)") |