diff options
Diffstat (limited to 'src/devices/bus/abcbus/fd2.cpp')
-rw-r--r-- | src/devices/bus/abcbus/fd2.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/abcbus/fd2.cpp b/src/devices/bus/abcbus/fd2.cpp index cf4f35121d1..6a7c4cc5f4d 100644 --- a/src/devices/bus/abcbus/fd2.cpp +++ b/src/devices/bus/abcbus/fd2.cpp @@ -188,7 +188,7 @@ WRITE8_MEMBER( abc_fd2_t::pio_pb_w ) */ - floppy_image_device *floppy = NULL; + floppy_image_device *floppy = nullptr; if (BIT(data, 0)) floppy = m_floppy0->get_device(); if (BIT(data, 1)) floppy = m_floppy1->get_device(); @@ -212,7 +212,7 @@ WRITE8_MEMBER( abc_fd2_t::pio_pb_w ) static const z80_daisy_config daisy_chain[] = { { Z80PIO_TAG }, - { NULL } + { nullptr } }; |