summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2022-04-23 04:58:06 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2022-04-23 04:58:06 +1000
commitc300be9a9df725743d2d8bb99f91b7186261479f (patch)
tree055222a43a7b07237828d6a4b2bed85753500463 /src
parent8fd9a8407018dd1413c3ad20b0343b4ff04375d9 (diff)
fccpu20: fixed save-state registration warnings
Diffstat (limited to 'src')
-rw-r--r--src/devices/bus/vme/vme_fccpu20.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/vme/vme_fccpu20.cpp b/src/devices/bus/vme/vme_fccpu20.cpp
index 4720a08e6d6..084e5ba14e5 100644
--- a/src/devices/bus/vme/vme_fccpu20.cpp
+++ b/src/devices/bus/vme/vme_fccpu20.cpp
@@ -438,6 +438,11 @@ vme_fccpu21yb_card_device::vme_fccpu21yb_card_device(const machine_config &mconf
LOG("%s %s\n", tag, FUNCNAME);
}
+enum
+{
+ TIMER_ID_BUS_GRANT
+};
+
/* Start it up */
void vme_fccpu20_device::device_start()
{
@@ -460,19 +465,14 @@ void vme_fccpu20_device::device_start()
m_vme->install_device(base + 2, base + 3, // Channel B - Control
read8_delegate(*subdevice<z80sio_device>("pit"), FUNC(z80sio_device::cb_r)), write8_delegate(*subdevice<z80sio_device>("pit"), FUNC(z80sio_device::cb_w)), 0x00ff);
#endif
+ m_arbiter_start = timer_alloc(TIMER_ID_BUS_GRANT);
}
-enum
-{
- TIMER_ID_BUS_GRANT
-};
-
void vme_fccpu20_device::device_reset()
{
LOG("%s\n", FUNCNAME);
/* We need to delay the static bus grant signal until we have it from the VME interface or MAME supports bus arbitration */
- m_arbiter_start = timer_alloc(TIMER_ID_BUS_GRANT);
m_arbiter_start->adjust(attotime::from_msec(10), TIMER_ID_BUS_GRANT, attotime::never);
}