diff options
author | 2020-05-19 23:09:10 +0200 | |
---|---|---|
committer | 2020-05-19 23:09:25 +0200 | |
commit | 587308c0a57d6d1e5b119deb38c9408aa6cb1b79 (patch) | |
tree | d1e541fd50e10caac5df6385d0235f954f9088f2 /src/devices/cpu/m6502/m6509.cpp | |
parent | f6c4a6c7074830956cfeca38fc7488c16ce01ce1 (diff) |
6502: correct device names (nw)
Diffstat (limited to 'src/devices/cpu/m6502/m6509.cpp')
-rw-r--r-- | src/devices/cpu/m6502/m6509.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/m6502/m6509.cpp b/src/devices/cpu/m6502/m6509.cpp index ea42fabd304..2f3d7ca0695 100644 --- a/src/devices/cpu/m6502/m6509.cpp +++ b/src/devices/cpu/m6502/m6509.cpp @@ -12,7 +12,7 @@ #include "m6509.h" #include "m6509d.h" -DEFINE_DEVICE_TYPE(M6509, m6509_device, "m6509", "MOS Technology M6509") +DEFINE_DEVICE_TYPE(M6509, m6509_device, "m6509", "MOS Technology 6509") m6509_device::m6509_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : m6502_device(mconfig, M6509, tag, owner, clock), bank_i(0), bank_y(0) |