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
This commit is contained in:
Benjamin Nash
2005-07-01 13:06:35 -04:00
parent 6cf1740bf5
commit 81b57af241
2 changed files with 32 additions and 29 deletions

View File

@@ -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'