diff options
author | 2012-11-26 16:04:41 +0000 | |
---|---|---|
committer | 2012-11-26 16:04:41 +0000 | |
commit | abbfd858eafb54a8da936e66518e52f08be6342a (patch) | |
tree | ba7d106bc8e02d3968d2312510294d3fe4edbe95 /src/mess/drivers/unixpc.c | |
parent | e8b103c2cbfb780f2c56aa6483fbee9e3990311a (diff) |
Replaced all device_t's with actual device classes. Regression test recommended. (nw)
Diffstat (limited to 'src/mess/drivers/unixpc.c')
-rw-r--r-- | src/mess/drivers/unixpc.c | 11 |
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); |