summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/unixpc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/drivers/unixpc.c')
-rw-r--r--src/mess/drivers/unixpc.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/mess/drivers/unixpc.c b/src/mess/drivers/unixpc.c
index 6dde44c566f..80d7753676c 100644
--- a/src/mess/drivers/unixpc.c
+++ b/src/mess/drivers/unixpc.c
@@ -30,15 +30,14 @@ public:
m_maincpu(*this, "maincpu"),
m_ram(*this, RAM_TAG),
m_wd2797(*this, "wd2797"),
- m_floppy(*this, FLOPPY_0)
- ,
- m_mapram(*this, "mapram"),
- m_videoram(*this, "videoram"){ }
+ m_floppy(*this, FLOPPY_0),
+ m_mapram(*this, "mapram"),
+ m_videoram(*this, "videoram"){ }
required_device<cpu_device> m_maincpu;
required_device<ram_device> m_ram;
- required_device<device_t> m_wd2797;
- required_device<device_t> m_floppy;
+ required_device<wd2797_device> m_wd2797;
+ required_device<legacy_floppy_image_device> m_floppy;
UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);