summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/sns_slot.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/sns_slot.h')
-rw-r--r--src/mess/machine/sns_slot.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mess/machine/sns_slot.h b/src/mess/machine/sns_slot.h
index 9c4189d7686..51f2aa708d0 100644
--- a/src/mess/machine/sns_slot.h
+++ b/src/mess/machine/sns_slot.h
@@ -107,12 +107,12 @@ public:
virtual ~device_sns_cart_interface();
// reading and writing
- virtual DECLARE_READ8_MEMBER(read_l) { return 0xff; } // ROM access in range [00-7f]
- virtual DECLARE_READ8_MEMBER(read_h) { return 0xff; } // ROM access in range [80-ff]
- virtual DECLARE_READ8_MEMBER(read_ram) { UINT32 mask = m_nvram_size - 1; return m_nvram[offset & mask]; } // NVRAM access
- virtual DECLARE_WRITE8_MEMBER(write_l) {} // used by carts with subslots
- virtual DECLARE_WRITE8_MEMBER(write_h) {} // used by carts with subslots
- virtual DECLARE_WRITE8_MEMBER(write_ram) { UINT32 mask = m_nvram_size - 1; m_nvram[offset & mask] = data; return; } // NVRAM access
+ virtual DECLARE_READ8_MEMBER(read_l) { return 0xff; } // ROM access in range [00-7f]
+ virtual DECLARE_READ8_MEMBER(read_h) { return 0xff; } // ROM access in range [80-ff]
+ virtual DECLARE_READ8_MEMBER(read_ram) { UINT32 mask = m_nvram_size - 1; return m_nvram[offset & mask]; } // NVRAM access
+ virtual DECLARE_WRITE8_MEMBER(write_l) {} // used by carts with subslots
+ virtual DECLARE_WRITE8_MEMBER(write_h) {} // used by carts with subslots
+ virtual DECLARE_WRITE8_MEMBER(write_ram) { UINT32 mask = m_nvram_size - 1; m_nvram[offset & mask] = data; return; } // NVRAM access
virtual DECLARE_READ8_MEMBER(chip_read) { return 0xff; }
virtual DECLARE_WRITE8_MEMBER(chip_write) {}
@@ -194,7 +194,7 @@ public:
virtual DECLARE_READ8_MEMBER(chip_read);
virtual DECLARE_WRITE8_MEMBER(chip_write);
- // in order to support legacy dumps + add-on CPU dump appended at the end of the file, we
+ // in order to support legacy dumps + add-on CPU dump appended at the end of the file, we
// check if the required data is present and update bank map accordingly
void setup_addon_from_fullpath();