diff options
Diffstat (limited to 'src/devices/machine')
| -rw-r--r-- | src/devices/machine/i8255.cpp | 1 | ||||
| -rw-r--r-- | src/devices/machine/i8255.h | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/devices/machine/i8255.cpp b/src/devices/machine/i8255.cpp index e0e5d8297a6..003734413e4 100644 --- a/src/devices/machine/i8255.cpp +++ b/src/devices/machine/i8255.cpp @@ -64,7 +64,6 @@ enum //************************************************************************** DEFINE_DEVICE_TYPE(I8255, i8255_device, "i8255", "Intel 8255 PPI") -decltype(I8255) I8255A = I8255; DEFINE_DEVICE_TYPE(AMS40489_PPI, ams40489_ppi_device, "ams40489_ppi", "Amstrad AMS40489 PPI") diff --git a/src/devices/machine/i8255.h b/src/devices/machine/i8255.h index 44a4dc72e5f..bd74fe2eb6e 100644 --- a/src/devices/machine/i8255.h +++ b/src/devices/machine/i8255.h @@ -142,7 +142,7 @@ public: // device type definition DECLARE_DEVICE_TYPE(I8255, i8255_device) -DECLARE_DEVICE_TYPE(I8255A, i8255_device) +static auto &I8255A = I8255; DECLARE_DEVICE_TYPE(AMS40489_PPI, ams40489_ppi_device) #endif // MAME_MACHINE_I8255_H |
