diff options
Diffstat (limited to 'src/devices/cpu/m6502')
| -rw-r--r-- | src/devices/cpu/m6502/deco16.cpp | 2 | ||||
| -rw-r--r-- | src/devices/cpu/m6502/m3745x.cpp | 12 | ||||
| -rw-r--r-- | src/devices/cpu/m6502/m4510.cpp | 4 | ||||
| -rw-r--r-- | src/devices/cpu/m6502/m5074x.cpp | 22 | ||||
| -rw-r--r-- | src/devices/cpu/m6502/m6502.cpp | 4 |
5 files changed, 22 insertions, 22 deletions
diff --git a/src/devices/cpu/m6502/deco16.cpp b/src/devices/cpu/m6502/deco16.cpp index a85804dc124..b354176969d 100644 --- a/src/devices/cpu/m6502/deco16.cpp +++ b/src/devices/cpu/m6502/deco16.cpp @@ -16,7 +16,7 @@ const device_type DECO16 = &device_creator<deco16_device>; deco16_device::deco16_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : - m6502_device(mconfig, DECO16, "DECO16", tag, owner, clock, "deco16", __FILE__), + m6502_device(mconfig, DECO16, "DECO16", tag, owner, clock, "deco16", __FILE__), io(NULL), io_config("io", ENDIANNESS_LITTLE, 8, 16) { diff --git a/src/devices/cpu/m6502/m3745x.cpp b/src/devices/cpu/m6502/m3745x.cpp index ef9c3876d9b..9a2a4872646 100644 --- a/src/devices/cpu/m6502/m3745x.cpp +++ b/src/devices/cpu/m6502/m3745x.cpp @@ -55,12 +55,12 @@ m3745x_device::m3745x_device(const machine_config &mconfig, device_type type, co read_ad_4(*this), read_ad_5(*this), read_ad_6(*this), - read_ad_7(*this), - m_intreq1(0), - m_intreq2(0), - m_intctrl1(0), - m_intctrl2(0), - m_adctrl(0), + read_ad_7(*this), + m_intreq1(0), + m_intreq2(0), + m_intctrl1(0), + m_intctrl2(0), + m_adctrl(0), m_last_all_ints(0) { } diff --git a/src/devices/cpu/m6502/m4510.cpp b/src/devices/cpu/m6502/m4510.cpp index 7d8c366a6db..b741b7dbeca 100644 --- a/src/devices/cpu/m6502/m4510.cpp +++ b/src/devices/cpu/m6502/m4510.cpp @@ -14,8 +14,8 @@ const device_type M4510 = &device_creator<m4510_device>; m4510_device::m4510_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : - m65ce02_device(mconfig, M4510, "M4510", tag, owner, clock, "m4510", __FILE__), - map_enable(0), + m65ce02_device(mconfig, M4510, "M4510", tag, owner, clock, "m4510", __FILE__), + map_enable(0), nomap(false) { program_config.m_addrbus_width = 20; diff --git a/src/devices/cpu/m6502/m5074x.cpp b/src/devices/cpu/m6502/m5074x.cpp index b427ec51488..07a5f3b510d 100644 --- a/src/devices/cpu/m6502/m5074x.cpp +++ b/src/devices/cpu/m6502/m5074x.cpp @@ -49,17 +49,17 @@ m5074x_device::m5074x_device(const machine_config &mconfig, device_type type, co write_p0(*this), write_p1(*this), write_p2(*this), - write_p3(*this), - m_intctrl(0), - m_tmrctrl(0), - m_tmr12pre(0), - m_tmr1(0), - m_tmr2(0), - m_tmrxpre(0), - m_tmrx(0), - m_tmr1latch(0), - m_tmr2latch(0), - m_tmrxlatch(0), + write_p3(*this), + m_intctrl(0), + m_tmrctrl(0), + m_tmr12pre(0), + m_tmr1(0), + m_tmr2(0), + m_tmrxpre(0), + m_tmrx(0), + m_tmr1latch(0), + m_tmr2latch(0), + m_tmrxlatch(0), m_last_all_ints(0) { } diff --git a/src/devices/cpu/m6502/m6502.cpp b/src/devices/cpu/m6502/m6502.cpp index fa22a54acd1..4fdc480a18c 100644 --- a/src/devices/cpu/m6502/m6502.cpp +++ b/src/devices/cpu/m6502/m6502.cpp @@ -18,14 +18,14 @@ m6502_device::m6502_device(const machine_config &mconfig, const char *tag, devic cpu_device(mconfig, M6502, "M6502", tag, owner, clock, "m6502", __FILE__), sync_w(*this), program_config("program", ENDIANNESS_LITTLE, 8, 16), - sprogram_config("decrypted_opcodes", ENDIANNESS_LITTLE, 8, 16), PPC(0), NPC(0), PC(0), SP(0), TMP(0), TMP2(0), A(0), X(0), Y(0), P(0), IR(0), inst_state_base(0), mintf(nullptr), + sprogram_config("decrypted_opcodes", ENDIANNESS_LITTLE, 8, 16), PPC(0), NPC(0), PC(0), SP(0), TMP(0), TMP2(0), A(0), X(0), Y(0), P(0), IR(0), inst_state_base(0), mintf(nullptr), inst_state(0), inst_substate(0), icount(0), nmi_state(false), irq_state(false), apu_irq_state(false), v_state(false), irq_taken(false), sync(false), inhibit_interrupts(false) { direct_disabled = false; } m6502_device::m6502_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source) : - cpu_device(mconfig, type, name, tag, owner, clock, shortname, source), + cpu_device(mconfig, type, name, tag, owner, clock, shortname, source), sync_w(*this), program_config("program", ENDIANNESS_LITTLE, 8, 16), sprogram_config("decrypted_opcodes", ENDIANNESS_LITTLE, 8, 16), PPC(0), NPC(0), PC(0), SP(0), TMP(0), TMP2(0), A(0), X(0), Y(0), P(0), IR(0), inst_state_base(0), mintf(nullptr), |
