diff options
Diffstat (limited to 'src/devices/bus/adam/ram.cpp')
-rw-r--r-- | src/devices/bus/adam/ram.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/devices/bus/adam/ram.cpp b/src/devices/bus/adam/ram.cpp index a7e79719867..65dc13f2246 100644 --- a/src/devices/bus/adam/ram.cpp +++ b/src/devices/bus/adam/ram.cpp @@ -30,7 +30,7 @@ DEFINE_DEVICE_TYPE(ADAM_RAM, adam_ram_expansion_device, "adam_ram", "Adam 64KB R adam_ram_expansion_device::adam_ram_expansion_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : device_t(mconfig, ADAM_RAM, tag, owner, clock), device_adam_expansion_slot_card_interface(mconfig, *this), - m_ram(*this, "ram") + m_ram(*this, "ram", 0x10000, ENDIANNESS_LITTLE) { } @@ -41,7 +41,6 @@ adam_ram_expansion_device::adam_ram_expansion_device(const machine_config &mconf void adam_ram_expansion_device::device_start() { - m_ram.allocate(0x10000); } |