diff options
author | Benjamin Nash <benash@umich.edu> | 2005-07-01 13:06:35 -0400 |
---|---|---|
committer | Benjamin Nash <benash@umich.edu> | 2005-07-01 13:06:35 -0400 |
commit | 81b57af24118ad61329a848b3b66874e6e05ecb9 (patch) | |
tree | f847a6ce99a64466aac95b6b344eb136c843070b /python/m5/objects/Tsunami.py | |
parent | 6cf1740bf5be924a58178a6d53500110e068b656 (diff) | |
download | gem5-81b57af24118ad61329a848b3b66874e6e05ecb9.tar.xz |
Fix formatting, move default size (0x8) of TsunamiFake from C++ code to Python code.
dev/ide_disk.cc:
Fix formatting. Panic if unexpected register type is given.
python/m5/objects/Tsunami.py:
Add default size of TsunamiFake device.
--HG--
extra : convert_revision : 03a35a2f6468b95746cba41ce7e93afeeb70ccef
Diffstat (limited to 'python/m5/objects/Tsunami.py')
-rw-r--r-- | python/m5/objects/Tsunami.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/m5/objects/Tsunami.py b/python/m5/objects/Tsunami.py index 8e16d5d1e..dd52bd11d 100644 --- a/python/m5/objects/Tsunami.py +++ b/python/m5/objects/Tsunami.py @@ -13,7 +13,7 @@ class TsunamiCChip(FooPioDevice): class TsunamiFake(FooPioDevice): type = 'TsunamiFake' - size = Param.Addr("Size of address range") + size = Param.Addr(0x8, "Size of address range") class TsunamiIO(FooPioDevice): type = 'TsunamiIO' |