summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/neogeo/cmc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/neogeo/cmc.h')
-rw-r--r--src/devices/bus/neogeo/cmc.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/devices/bus/neogeo/cmc.h b/src/devices/bus/neogeo/cmc.h
index bba8251d2e5..88b1c27cd9f 100644
--- a/src/devices/bus/neogeo/cmc.h
+++ b/src/devices/bus/neogeo/cmc.h
@@ -8,7 +8,6 @@
#include "slot.h"
#include "rom.h"
#include "prot_cmc.h"
-#include "machine/nvram.h"
// ======================> neogeo_cmc_cart_device
@@ -219,13 +218,10 @@ public:
protected:
virtual void device_start() override;
-
- virtual void device_add_mconfig(machine_config &config) override;
+ virtual void device_reset() override;
private:
- std::unique_ptr<uint16_t[]> m_ram;
-
- required_device<nvram_device> m_nvram;
+ uint16_t m_ram[0x1000];
};
DECLARE_DEVICE_TYPE(NEOGEO_CMC_JOCKEYGP_CART, neogeo_cmc_jockeygp_cart_device)