summaryrefslogtreecommitdiff
path: root/objects/Ide.mpy
diff options
context:
space:
mode:
Diffstat (limited to 'objects/Ide.mpy')
-rw-r--r--objects/Ide.mpy14
1 files changed, 0 insertions, 14 deletions
diff --git a/objects/Ide.mpy b/objects/Ide.mpy
deleted file mode 100644
index ce760ad96..000000000
--- a/objects/Ide.mpy
+++ /dev/null
@@ -1,14 +0,0 @@
-from Pci import PciDevice
-
-class IdeID(Enum): vals = ['master', 'slave']
-
-simobj IdeDisk(SimObject):
- type = 'IdeDisk'
- delay = Param.Tick(1, "Fixed disk delay in microseconds")
- driveID = Param.IdeID('master', "Drive ID")
- image = Param.DiskImage("Disk image")
- physmem = Param.PhysicalMemory(Super, "Physical memory")
-
-simobj IdeController(PciDevice):
- type = 'IdeController'
- disks = VectorParam.IdeDisk("IDE disks attached to this controller")