diff options
author | 2018-03-15 18:06:10 +0100 | |
---|---|---|
committer | 2018-03-15 18:07:39 +0100 | |
commit | bb11fbd2bd66ad45571146ec5a660f5775949ef1 (patch) | |
tree | 1fd5b5e6bfed24d4d86ebe18c28bc1b82335733d /src/devices/cpu/m6502/m65c02.cpp | |
parent | ba278b8f03a6affbaf87da6f533f85ee5cd6f7a9 (diff) |
Blind faith fixed long names for almost all CPUs (nw)
mb86235.cpp: renamed pcs_ptr into pcp, and added a file for future interpreter core (nw)
Diffstat (limited to 'src/devices/cpu/m6502/m65c02.cpp')
-rw-r--r-- | src/devices/cpu/m6502/m65c02.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/m6502/m65c02.cpp b/src/devices/cpu/m6502/m65c02.cpp index bc79ea84231..7f4ce41dc31 100644 --- a/src/devices/cpu/m6502/m65c02.cpp +++ b/src/devices/cpu/m6502/m65c02.cpp @@ -13,7 +13,7 @@ #include "m65c02.h" #include "m65c02d.h" -DEFINE_DEVICE_TYPE(M65C02, m65c02_device, "m65c02", "M65C02") +DEFINE_DEVICE_TYPE(M65C02, m65c02_device, "m65c02", "MOS Technology M65C02") m65c02_device::m65c02_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : m6502_device(mconfig, M65C02, tag, owner, clock) |