summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/x2212.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine/x2212.h')
-rw-r--r--src/emu/machine/x2212.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/emu/machine/x2212.h b/src/emu/machine/x2212.h
index bebc5590baf..0db04924f8b 100644
--- a/src/emu/machine/x2212.h
+++ b/src/emu/machine/x2212.h
@@ -35,7 +35,7 @@
// ======================> x2212_device
-class x2212_device : public device_t,
+class x2212_device : public device_t,
public device_memory_interface,
public device_nvram_interface
{
@@ -72,18 +72,18 @@ protected:
static const int SIZE_DATA = 0x100;
// configuration state
- bool m_auto_save;
+ bool m_auto_save;
// device-specific configuration
- address_space_config m_sram_space_config;
- address_space_config m_e2prom_space_config;
+ address_space_config m_sram_space_config;
+ address_space_config m_e2prom_space_config;
// internal state
- address_space * m_sram;
- address_space * m_e2prom;
+ address_space * m_sram;
+ address_space * m_e2prom;
- bool m_store;
- bool m_array_recall;
+ bool m_store;
+ bool m_array_recall;
};