diff options
Diffstat (limited to 'src/devices/machine/ram.cpp')
-rw-r--r-- | src/devices/machine/ram.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/devices/machine/ram.cpp b/src/devices/machine/ram.cpp index d1cc4dc8328..40b361bdc6a 100644 --- a/src/devices/machine/ram.cpp +++ b/src/devices/machine/ram.cpp @@ -7,7 +7,6 @@ RAM device Provides a configurable amount of RAM to drivers TODO: -- default fill value of 0xCD makes no sense - add RAM size options to UI, eg. under Machine Configuration - remove limitations due to hardcoded RAM_TAG: + *configurable* RAM device can only be added to root device @@ -125,7 +124,7 @@ ram_device::ram_device(const machine_config &mconfig, const char *tag, device_t : device_t(mconfig, RAM, tag, owner, clock) , m_size(0) , m_default_size(0) - , m_default_value(0xCD) + , m_default_value(0xff) , m_extra_options_string(nullptr) { } |