diff options
author | Benjamin Nash <benash@umich.edu> | 2005-06-23 16:27:06 -0400 |
---|---|---|
committer | Benjamin Nash <benash@umich.edu> | 2005-06-23 16:27:06 -0400 |
commit | e8bcecd0a04638e9d9e6306cbe515c40e9ba0817 (patch) | |
tree | 97e805542159e66c4856f099762135df67f07944 /python/m5/objects/Tsunami.py | |
parent | a994f6e07b8fe0f2f04e99990e6b7e41f0d46973 (diff) | |
download | gem5-e8bcecd0a04638e9d9e6306cbe515c40e9ba0817.tar.xz |
Changed timer functionality, ide disk interrupts, and TsunamiFake class to improve FreeBSD compatibility.
dev/ide_disk.cc:
Make ide disk set interrupts correctly.
dev/tsunami_io.cc:
dev/tsunami_io.hh:
Implement read of timer counts.
kern/freebsd/freebsd_system.cc:
kern/freebsd/freebsd_system.hh:
Remove SkipFuncEvents that we don't need to skip.
python/m5/objects/Tsunami.py:
Add size parameter to TsunamiFake class.
--HG--
extra : convert_revision : a87e74f2cac0036060ca8cb3fde4760d8c91a5db
Diffstat (limited to 'python/m5/objects/Tsunami.py')
-rw-r--r-- | python/m5/objects/Tsunami.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/m5/objects/Tsunami.py b/python/m5/objects/Tsunami.py index c8fd94e2c..8e16d5d1e 100644 --- a/python/m5/objects/Tsunami.py +++ b/python/m5/objects/Tsunami.py @@ -13,6 +13,7 @@ class TsunamiCChip(FooPioDevice): class TsunamiFake(FooPioDevice): type = 'TsunamiFake' + size = Param.Addr("Size of address range") class TsunamiIO(FooPioDevice): type = 'TsunamiIO' |