summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ieee488/c8280.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-12-04 07:02:00 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-12-04 07:02:00 +0100
commit68f961927a156c47cb444c1f66258a89342d0205 (patch)
treeb0d5753d5658e62ecca72d37af2f79dfc7f808bb /src/devices/bus/ieee488/c8280.cpp
parent029a3003631093ffaf1a0318e0c58b3e173403a3 (diff)
clang-modernize part 2
Diffstat (limited to 'src/devices/bus/ieee488/c8280.cpp')
-rw-r--r--src/devices/bus/ieee488/c8280.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/ieee488/c8280.cpp b/src/devices/bus/ieee488/c8280.cpp
index 72853220014..29ade86c570 100644
--- a/src/devices/bus/ieee488/c8280.cpp
+++ b/src/devices/bus/ieee488/c8280.cpp
@@ -436,7 +436,7 @@ void c8280_t::device_reset()
m_riot1->pa7_w(1);
m_fk5 = 0;
- m_floppy = NULL;
+ m_floppy = nullptr;
m_fdc->set_floppy(m_floppy);
m_fdc->dden_w(0);
}
@@ -513,7 +513,7 @@ WRITE8_MEMBER( c8280_t::fk5_w )
m_fk5 = data & 0x27;
// drive select
- m_floppy = NULL;
+ m_floppy = nullptr;
if (BIT(data, 0)) m_floppy = m_floppy0->get_device();
if (BIT(data, 1)) m_floppy = m_floppy1->get_device();