summaryrefslogtreecommitdiff
path: root/src/dev/Ide.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/dev/Ide.py')
-rw-r--r--src/dev/Ide.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dev/Ide.py b/src/dev/Ide.py
index 7d97c42b6..c5eef9f54 100644
--- a/src/dev/Ide.py
+++ b/src/dev/Ide.py
@@ -34,12 +34,14 @@ class IdeID(Enum): vals = ['master', 'slave']
class IdeDisk(SimObject):
type = 'IdeDisk'
+ cxx_header = "dev/ide_disk.hh"
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'
+ cxx_header = "dev/ide_ctrl.hh"
disks = VectorParam.IdeDisk("IDE disks attached to this controller")
VendorID = 0x8086