diff options
author | 2016-08-27 05:47:36 +1000 | |
---|---|---|
committer | 2016-08-27 05:47:36 +1000 | |
commit | ea3ff966732b30c0350022e64005a4c3cfa232ed (patch) | |
tree | f7dcccdcf089555caa4f38d5ac174a075bc95d5d /src/devices/cpu/avr8 | |
parent | db48502ecbf882a0d4558d440a16803b1365f17d (diff) |
More prep for removing pointer/reference duality (nw)
Diffstat (limited to 'src/devices/cpu/avr8')
-rw-r--r-- | src/devices/cpu/avr8/avr8.cpp | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/src/devices/cpu/avr8/avr8.cpp b/src/devices/cpu/avr8/avr8.cpp index f0e790083f7..5500f9060ad 100644 --- a/src/devices/cpu/avr8/avr8.cpp +++ b/src/devices/cpu/avr8/avr8.cpp @@ -633,24 +633,24 @@ atmega2560_device::atmega2560_device(const machine_config &mconfig, const char * //------------------------------------------------- avr8_device::avr8_device(const machine_config &mconfig, const char *name, const char *tag, device_t *owner, UINT32 clock, const device_type type, UINT32 addr_mask, address_map_constructor internal_map, UINT8 cpu_type, const char *shortname, const char *source) - : cpu_device(mconfig, type, name, tag, owner, clock, shortname, source), - m_shifted_pc(0), - m_program_config("program", ENDIANNESS_LITTLE, 8, 22), - m_data_config("data", ENDIANNESS_LITTLE, 8, 16, 0, internal_map), - m_io_config("io", ENDIANNESS_LITTLE, 8, 4), - m_eeprom(*this), - m_cpu_type(cpu_type), - m_lfuses(0x62), - m_hfuses(0x99), - m_efuses(0xFF), - m_lock_bits(0xFF), - m_pc(0), - m_spi_active(false), - m_spi_prescale(0), - m_spi_prescale_count(0), - m_addr_mask(addr_mask), - m_interrupt_pending(false), - m_elapsed_cycles(0) + : cpu_device(mconfig, type, name, tag, owner, clock, shortname, source) + , m_shifted_pc(0) + , m_program_config("program", ENDIANNESS_LITTLE, 8, 22) + , m_data_config("data", ENDIANNESS_LITTLE, 8, 16, 0, internal_map) + , m_io_config("io", ENDIANNESS_LITTLE, 8, 4) + , m_eeprom(*this, finder_base::DUMMY_TAG) + , m_cpu_type(cpu_type) + , m_lfuses(0x62) + , m_hfuses(0x99) + , m_efuses(0xFF) + , m_lock_bits(0xFF) + , m_pc(0) + , m_spi_active(false) + , m_spi_prescale(0) + , m_spi_prescale_count(0) + , m_addr_mask(addr_mask) + , m_interrupt_pending(false) + , m_elapsed_cycles(0) { // Allocate & setup |