summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/vme/vme.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/vme/vme.h')
-rw-r--r--src/devices/bus/vme/vme.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/vme/vme.h b/src/devices/bus/vme/vme.h
index e68f4a9a125..e49b23cbbbe 100644
--- a/src/devices/bus/vme/vme.h
+++ b/src/devices/bus/vme/vme.h
@@ -118,7 +118,7 @@ protected:
// callbacks
devcb_write_line m_vme_j1_callback;
- device_vme_card_interface *m_card = nullptr;
+ device_vme_card_interface *m_card;
};
DECLARE_DEVICE_TYPE(VME, vme_device)
@@ -195,12 +195,12 @@ protected:
virtual space_config_vector memory_space_config() const override;
// internal state
- cpu_device *m_maincpu = nullptr;
+ cpu_device *m_maincpu;
// address spaces
- address_space *m_prgspace = nullptr;
- int m_prgwidth = 0;
- bool m_allocspaces = false;
+ address_space *m_prgspace;
+ int m_prgwidth;
+ bool m_allocspaces;
const char *m_cputag;