diff options
Diffstat (limited to 'python/m5/objects/Ide.py')
-rw-r--r-- | python/m5/objects/Ide.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/python/m5/objects/Ide.py b/python/m5/objects/Ide.py deleted file mode 100644 index 2403e6d36..000000000 --- a/python/m5/objects/Ide.py +++ /dev/null @@ -1,14 +0,0 @@ -from m5 import * -from Pci import PciDevice - -class IdeID(Enum): vals = ['master', 'slave'] - -class IdeDisk(SimObject): - type = 'IdeDisk' - delay = Param.Latency('1us', "Fixed disk delay in microseconds") - driveID = Param.IdeID('master', "Drive ID") - image = Param.DiskImage("Disk image") - -class IdeController(PciDevice): - type = 'IdeController' - disks = VectorParam.IdeDisk("IDE disks attached to this controller") |