diff options
author | 2020-07-02 23:02:21 +0200 | |
---|---|---|
committer | 2020-07-02 23:02:21 +0200 | |
commit | 38873bf2b3bbc286ffb4b6bb554586cb6ca18ab2 (patch) | |
tree | c346d122f047fd79c9d632af5b61019bdb3cfe8d | |
parent | ccc4885c9fe2545c7b01059d036feb00b159bf12 (diff) |
cop452: fixed validation (Device cop452.cpp(COP452) short name contains invalid characters)
-rw-r--r-- | src/devices/machine/cop452.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/cop452.cpp b/src/devices/machine/cop452.cpp index cd3e1cb9ecb..e70cf1db868 100644 --- a/src/devices/machine/cop452.cpp +++ b/src/devices/machine/cop452.cpp @@ -17,7 +17,7 @@ #include "logmacro.h" // Device type definition -DEFINE_DEVICE_TYPE(COP452, cop452_device, "COP452", "National Semiconductor COP452 frequency generator") +DEFINE_DEVICE_TYPE(COP452, cop452_device, "cop452", "National Semiconductor COP452 frequency generator") cop452_device::cop452_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) : device_t(mconfig , COP452 , tag , owner , clock) |