diff options
Diffstat (limited to 'src/devices/bus/c64/georam.cpp')
-rw-r--r-- | src/devices/bus/c64/georam.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/devices/bus/c64/georam.cpp b/src/devices/bus/c64/georam.cpp index 6bf8a16a1d8..377bc10a391 100644 --- a/src/devices/bus/c64/georam.cpp +++ b/src/devices/bus/c64/georam.cpp @@ -30,7 +30,7 @@ DEFINE_DEVICE_TYPE(C64_GEORAM, c64_georam_cartridge_device, "c64_georam", "C64 G c64_georam_cartridge_device::c64_georam_cartridge_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : device_t(mconfig, C64_GEORAM, tag, owner, clock), device_c64_expansion_card_interface(mconfig, *this), - m_ram(*this, "ram"), + m_ram(*this, "ram", 0x80000, ENDIANNESS_LITTLE), m_bank(0) { } @@ -42,9 +42,6 @@ c64_georam_cartridge_device::c64_georam_cartridge_device(const machine_config &m void c64_georam_cartridge_device::device_start() { - // allocate memory - m_ram.allocate(0x80000); - // state saving save_item(NAME(m_bank)); } |