diff options
| author | 2015-04-29 08:18:54 +0200 | |
|---|---|---|
| committer | 2015-04-29 08:18:54 +0200 | |
| commit | 76b978d039f922ed84796deb999389ebb1579191 (patch) | |
| tree | 90e4fe3efe7a18b896e49fd7fb65ba7a144cac0f /src/mess/machine | |
| parent | 64219f27d20c0f6f2dc8c168c8c19ba9420f889d (diff) | |
Cleanups and version bumpmame0161
Diffstat (limited to 'src/mess/machine')
| -rw-r--r-- | src/mess/machine/pce_cd.c | 2 | ||||
| -rw-r--r-- | src/mess/machine/pce_cd.h | 2 |
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(); |
