summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine')
-rw-r--r--src/mess/machine/pce_cd.c2
-rw-r--r--src/mess/machine/pce_cd.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/machine/pce_cd.c b/src/mess/machine/pce_cd.c
index 03e5b8cfdf7..ffec0a7e5b4 100644
--- a/src/mess/machine/pce_cd.c
+++ b/src/mess/machine/pce_cd.c
@@ -232,7 +232,7 @@ void pce_cd_device::late_setup()
void pce_cd_device::nvram_init(nvram_device &nvram, void *data, size_t size)
{
static const UINT8 init[8] = { 0x48, 0x55, 0x42, 0x4d, 0x00, 0xa0, 0x10, 0x80 };
-
+
memset(data, 0x00, size);
memcpy(data, init, sizeof(init));
}
diff --git a/src/mess/machine/pce_cd.h b/src/mess/machine/pce_cd.h
index 580884c8f86..bf2b29423b9 100644
--- a/src/mess/machine/pce_cd.h
+++ b/src/mess/machine/pce_cd.h
@@ -61,7 +61,7 @@ public:
DECLARE_READ8_MEMBER(acard_r);
void nvram_init(nvram_device &nvram, void *data, size_t size);
-
+
private:
void adpcm_stop(UINT8 irq_flag);
void adpcm_play();