diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/m5/objects/Pci.py | 3 | ||||
-rw-r--r-- | python/m5/objects/Tsunami.py | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/python/m5/objects/Pci.py b/python/m5/objects/Pci.py index 0957e2883..defdd10a3 100644 --- a/python/m5/objects/Pci.py +++ b/python/m5/objects/Pci.py @@ -50,3 +50,6 @@ class PciDevice(DmaDevice): pci_func = Param.Int("PCI function code") configdata = Param.PciConfigData(Parent.any, "PCI Config data") configspace = Param.PciConfigAll(Parent.any, "PCI Configspace") + +class PciFake(PciDevice): + type = 'PciFake' diff --git a/python/m5/objects/Tsunami.py b/python/m5/objects/Tsunami.py index c8fd94e2c..5425f421f 100644 --- a/python/m5/objects/Tsunami.py +++ b/python/m5/objects/Tsunami.py @@ -11,8 +11,9 @@ class TsunamiCChip(FooPioDevice): type = 'TsunamiCChip' tsunami = Param.Tsunami(Parent.any, "Tsunami") -class TsunamiFake(FooPioDevice): - type = 'TsunamiFake' +class IsaFake(FooPioDevice): + type = 'IsaFake' + size = Param.Addr("Size of address range") class TsunamiIO(FooPioDevice): type = 'TsunamiIO' |