6502: correct device names (nw)

This commit is contained in:
hap 2020-05-19 23:09:10 +02:00
parent f6c4a6c707
commit 587308c0a5
13 changed files with 16 additions and 16 deletions

View File

@ -15,7 +15,7 @@
#include "m4510.h"
#include "m4510d.h"
DEFINE_DEVICE_TYPE(M4510, m4510_device, "m4510", "CSG M4510")
DEFINE_DEVICE_TYPE(M4510, m4510_device, "m4510", "CSG 4510")
m4510_device::m4510_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
m65ce02_device(mconfig, M4510, tag, owner, clock),

View File

@ -78,7 +78,7 @@ constexpr u8 CR_CTRO = 0x80U;
} // anonymous namespace
DEFINE_DEVICE_TYPE(M6500_1, m6500_1_device, "m6500_1", "MOS M6500/1");
DEFINE_DEVICE_TYPE(M6500_1, m6500_1_device, "m6500_1", "MOS Technology 6500/1");
m6500_1_device::m6500_1_device(machine_config const &mconfig, char const *tag, device_t *owner, u32 clock)

View File

@ -13,8 +13,8 @@
#include "m6502.h"
#include "m6502d.h"
DEFINE_DEVICE_TYPE(M6502, m6502_device, "m6502", "MOS Technology M6502")
DEFINE_DEVICE_TYPE(M6512, m6512_device, "m6512", "MOS Technology M6512")
DEFINE_DEVICE_TYPE(M6502, m6502_device, "m6502", "MOS Technology 6502")
DEFINE_DEVICE_TYPE(M6512, m6512_device, "m6512", "MOS Technology 6512")
m6502_device::m6502_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
m6502_device(mconfig, M6502, tag, owner, clock)

View File

@ -11,7 +11,7 @@
#include "emu.h"
#include "m6504.h"
DEFINE_DEVICE_TYPE(M6504, m6504_device, "m6504", "MOS Technology M6504")
DEFINE_DEVICE_TYPE(M6504, m6504_device, "m6504", "MOS Technology 6504")
m6504_device::m6504_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
m6502_device(mconfig, M6504, tag, owner, clock)

View File

@ -11,7 +11,7 @@
#include "emu.h"
#include "m6507.h"
DEFINE_DEVICE_TYPE(M6507, m6507_device, "m6507", "MOS Technology M6507")
DEFINE_DEVICE_TYPE(M6507, m6507_device, "m6507", "MOS Technology 6507")
m6507_device::m6507_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
m6502_device(mconfig, M6507, tag, owner, clock)

View File

@ -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)

View File

@ -15,8 +15,8 @@
#include "m6510.h"
#include "m6510d.h"
DEFINE_DEVICE_TYPE(M6510, m6510_device, "m6510", "MOS Technology M6510")
DEFINE_DEVICE_TYPE(M6508, m6508_device, "m6508", "MOS Technology M6508")
DEFINE_DEVICE_TYPE(M6510, m6510_device, "m6510", "MOS Technology 6510")
DEFINE_DEVICE_TYPE(M6508, m6508_device, "m6508", "MOS Technology 6508")
m6510_device::m6510_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
m6510_device(mconfig, M6510, tag, owner, clock)

View File

@ -11,7 +11,7 @@
#include "emu.h"
#include "m6510t.h"
DEFINE_DEVICE_TYPE(M6510T, m6510t_device, "m6510t", "MOS Technology M6510T")
DEFINE_DEVICE_TYPE(M6510T, m6510t_device, "m6510t", "MOS Technology 6510T")
m6510t_device::m6510t_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
m6510_device(mconfig, M6510T, tag, owner, clock)

View File

@ -4,7 +4,7 @@
m65c02.c
MOS Technology 6502, CMOS variant with some additional instructions
WDC W65C02, CMOS variant with some additional instructions
(but not the bitwise ones)
***************************************************************************/
@ -13,7 +13,7 @@
#include "m65c02.h"
#include "m65c02d.h"
DEFINE_DEVICE_TYPE(M65C02, m65c02_device, "m65c02", "MOS Technology M65C02")
DEFINE_DEVICE_TYPE(M65C02, m65c02_device, "m65c02", "WDC W65C02")
m65c02_device::m65c02_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
m6502_device(mconfig, M65C02, tag, owner, clock)

View File

@ -4,7 +4,7 @@
m65c02.h
MOS Technology 6502, CMOS variant with some additional instructions
WDC W65C02, CMOS variant with some additional instructions
(but not the bitwise ones)
***************************************************************************/

View File

@ -12,7 +12,7 @@
#include "m65ce02.h"
#include "m65ce02d.h"
DEFINE_DEVICE_TYPE(M65CE02, m65ce02_device, "m65ce02", "MOS Technology M65CE02")
DEFINE_DEVICE_TYPE(M65CE02, m65ce02_device, "m65ce02", "CSG 65CE02")
m65ce02_device::m65ce02_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
m65ce02_device(mconfig, M65CE02, tag, owner, clock)

View File

@ -11,7 +11,7 @@
#include "emu.h"
#include "m65sc02.h"
DEFINE_DEVICE_TYPE(M65SC02, m65sc02_device, "m65sc02", "Rockwell M65SC02")
DEFINE_DEVICE_TYPE(M65SC02, m65sc02_device, "m65sc02", "GTE G65SC02")
m65sc02_device::m65sc02_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
r65c02_device(mconfig, M65SC02, tag, owner, clock)

View File

@ -11,7 +11,7 @@
#include "emu.h"
#include "m8502.h"
DEFINE_DEVICE_TYPE(M8502, m8502_device, "m8502", "M8502")
DEFINE_DEVICE_TYPE(M8502, m8502_device, "m8502", "MOS Technology 8502")
m8502_device::m8502_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
m6510_device(mconfig, M8502, tag, owner, clock)