diff options
Diffstat (limited to 'src/devices/bus/comx35/ram.cpp')
-rw-r--r-- | src/devices/bus/comx35/ram.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/devices/bus/comx35/ram.cpp b/src/devices/bus/comx35/ram.cpp index b468b6366ff..0f11dfdb194 100644 --- a/src/devices/bus/comx35/ram.cpp +++ b/src/devices/bus/comx35/ram.cpp @@ -37,7 +37,7 @@ DEFINE_DEVICE_TYPE(COMX_RAM, comx_ram_device, "comx_ram", "COMX-35 RAM Card") comx_ram_device::comx_ram_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : device_t(mconfig, COMX_RAM, tag, owner, clock), device_comx_expansion_card_interface(mconfig, *this), - m_ram(*this, "ram"), + m_ram(*this, "ram", RAM_SIZE, ENDIANNESS_LITTLE), m_bank(0) { } @@ -49,7 +49,6 @@ comx_ram_device::comx_ram_device(const machine_config &mconfig, const char *tag, void comx_ram_device::device_start() { - m_ram.allocate(RAM_SIZE); } |