mirror of
https://github.com/holub/mame
synced 2025-04-24 17:30:55 +03:00
Device validation fixes, invalid characters department (nw)
This commit is contained in:
parent
25983e83e5
commit
b8e42f8c8c
@ -249,7 +249,7 @@ arm_cpu_device::arm_cpu_device(const machine_config &mconfig, device_type type,
|
||||
|
||||
|
||||
arm_be_cpu_device::arm_be_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
|
||||
: arm_cpu_device(mconfig, ARM_BE, "ARM (big endian)", tag, owner, clock, "arm be", __FILE__, ENDIANNESS_BIG)
|
||||
: arm_cpu_device(mconfig, ARM_BE, "ARM (big endian)", tag, owner, clock, "arm_be", __FILE__, ENDIANNESS_BIG)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -292,7 +292,7 @@ hp_taco_device::hp_taco_device(const machine_config &mconfig, device_type type,
|
||||
}
|
||||
|
||||
hp_taco_device::hp_taco_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
|
||||
: device_t(mconfig, HP_TACO, "HP TACO", tag, owner, clock, "TACO", __FILE__),
|
||||
: device_t(mconfig, HP_TACO, "HP TACO", tag, owner, clock, "hp_taco", __FILE__),
|
||||
device_image_interface(mconfig , *this),
|
||||
m_irq_handler(*this),
|
||||
m_flg_handler(*this),
|
||||
|
@ -189,7 +189,7 @@ phi_device::phi_device(const machine_config &mconfig, device_type type, const ch
|
||||
}
|
||||
|
||||
phi_device::phi_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
|
||||
: device_t(mconfig, PHI, "HP PHI", tag, owner, clock, "PHI", __FILE__),
|
||||
: device_t(mconfig, PHI, "HP PHI", tag, owner, clock, "phi", __FILE__),
|
||||
m_dio_read_func(*this),
|
||||
m_dio_write_func(*this),
|
||||
m_signal_wr_fns{
|
||||
|
@ -208,13 +208,13 @@ duscc26562_device::duscc26562_device(const machine_config &mconfig, const char *
|
||||
: duscc_device(mconfig, DUSCC26562, "DUSCC 26562", tag, owner, clock, TYPE_DUSCC26562, "duscc26562", __FILE__){ }
|
||||
|
||||
duscc26C562_device::duscc26C562_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
|
||||
: duscc_device(mconfig, DUSCC26C562, "DUSCC 26C562", tag, owner, clock, TYPE_DUSCC26C562, "duscc26C562", __FILE__){ }
|
||||
: duscc_device(mconfig, DUSCC26C562, "DUSCC 26C562", tag, owner, clock, TYPE_DUSCC26C562, "duscc26c562", __FILE__){ }
|
||||
|
||||
duscc68562_device::duscc68562_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
|
||||
: duscc_device(mconfig, DUSCC68562, "DUSCC 68562", tag, owner, clock, TYPE_DUSCC68562, "duscc68562", __FILE__){ }
|
||||
|
||||
duscc68C562_device::duscc68C562_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
|
||||
: duscc_device(mconfig, DUSCC68C562, "DUSCC 68C562", tag, owner, clock, TYPE_DUSCC68C562, "duscc68C562", __FILE__){ }
|
||||
: duscc_device(mconfig, DUSCC68C562, "DUSCC 68C562", tag, owner, clock, TYPE_DUSCC68C562, "duscc68c562", __FILE__){ }
|
||||
|
||||
//-------------------------------------------------
|
||||
// device_start - device-specific startup
|
||||
|
@ -8,7 +8,7 @@
|
||||
const device_type SEGA_315_5641_PCM = device_creator<sega_315_5641_pcm_device>;
|
||||
|
||||
sega_315_5641_pcm_device::sega_315_5641_pcm_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
|
||||
: upd7759_device(mconfig, SEGA_315_5641_PCM, "315-5641 PCM", tag, owner, clock, "315-5641_pcm", __FILE__), m_fifo_read(0), m_fifo_write(0)
|
||||
: upd7759_device(mconfig, SEGA_315_5641_PCM, "315-5641 PCM", tag, owner, clock, "315_5641_pcm", __FILE__), m_fifo_read(0), m_fifo_write(0)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -66,7 +66,7 @@ static uint16_t parity(uint16_t x)
|
||||
const device_type ATARI_136094_0072 = device_creator<atari_136094_0072_device>;
|
||||
|
||||
atari_136094_0072_device::atari_136094_0072_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
|
||||
: atari_xga_device(mconfig, ATARI_136094_0072, tag, owner, clock, "Atari 136094-0072 XGA", "136094-0072")
|
||||
: atari_xga_device(mconfig, ATARI_136094_0072, tag, owner, clock, "Atari 136094-0072 XGA", "136094_0072")
|
||||
{
|
||||
}
|
||||
|
||||
@ -286,7 +286,7 @@ READ32_MEMBER(atari_136094_0072_device::read)
|
||||
const device_type ATARI_136095_0072 = device_creator<atari_136095_0072_device>;
|
||||
|
||||
atari_136095_0072_device::atari_136095_0072_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
|
||||
: atari_xga_device(mconfig, ATARI_136095_0072, tag, owner, clock, "Atari 136095-0072 XGA", "136095-0072")
|
||||
: atari_xga_device(mconfig, ATARI_136095_0072, tag, owner, clock, "Atari 136095-0072 XGA", "136095_0072")
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user