summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/v60
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2018-06-29 10:58:19 +0200
committer Olivier Galibert <galibert@pobox.com>2018-06-29 20:04:28 +0200
commita704ed7b1b121c3bcff52d49bff8372360fe907c (patch)
tree53dd19f2dbe2bd0bf0f747dcccd989beabfafbf7 /src/devices/cpu/v60
parentf16d1298a44e71c18c337fc321faebe4fe691e06 (diff)
emumem: Backend modernization [O. Galibert]
Diffstat (limited to 'src/devices/cpu/v60')
-rw-r--r--src/devices/cpu/v60/v60.cpp2
-rw-r--r--src/devices/cpu/v60/v60.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/src/devices/cpu/v60/v60.cpp b/src/devices/cpu/v60/v60.cpp
index 0952d1fb189..9fb8374ae1b 100644
--- a/src/devices/cpu/v60/v60.cpp
+++ b/src/devices/cpu/v60/v60.cpp
@@ -94,7 +94,6 @@ v60_device::v60_device(const machine_config &mconfig, device_type type, const ch
: cpu_device(mconfig, type, tag, owner, clock)
, m_program_config("program", ENDIANNESS_LITTLE, databits, addrbits, 0)
, m_io_config("io", ENDIANNESS_LITTLE, 16, 24, 0)
- , m_fetch_xor(BYTE4_XOR_LE(0))
, m_start_pc(0xfffffff0)
{
m_reg[45] = pir;
@@ -428,7 +427,6 @@ void v60_device::device_start()
m_io = &space(AS_IO);
- save_item(NAME(m_fetch_xor));
save_item(NAME(m_reg));
save_item(NAME(m_irq_line));
save_item(NAME(m_nmi_line));
diff --git a/src/devices/cpu/v60/v60.h b/src/devices/cpu/v60/v60.h
index 14a0ca62615..47917aa1c94 100644
--- a/src/devices/cpu/v60/v60.h
+++ b/src/devices/cpu/v60/v60.h
@@ -151,7 +151,6 @@ private:
address_space_config m_program_config;
address_space_config m_io_config;
- offs_t m_fetch_xor;
offs_t m_start_pc;
uint32_t m_reg[68];
struct {