diff options
Diffstat (limited to 'src/devices/bus/pofo/hpc104.cpp')
-rw-r--r-- | src/devices/bus/pofo/hpc104.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/devices/bus/pofo/hpc104.cpp b/src/devices/bus/pofo/hpc104.cpp index 0d8953b20c6..01dd6beb7c2 100644 --- a/src/devices/bus/pofo/hpc104.cpp +++ b/src/devices/bus/pofo/hpc104.cpp @@ -141,6 +141,25 @@ void pofo_hpc104_device::device_reset() } +void pofo_hpc104_device::nvram_default() +{ +} + + +bool pofo_hpc104_device::nvram_read(util::read_stream &file) +{ + auto const [err, actual] = read(file, m_nvram, 0x40000); + return !err && (actual == 0x40000); +} + + +bool pofo_hpc104_device::nvram_write(util::write_stream &file) +{ + auto const [err, actual] = write(file, m_nvram, 0x40000); + return !err; +} + + //------------------------------------------------- // nrdi_r - read //------------------------------------------------- |