summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/vc4000/slot.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/vc4000/slot.h')
-rw-r--r--src/devices/bus/vc4000/slot.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/devices/bus/vc4000/slot.h b/src/devices/bus/vc4000/slot.h
index 39de8414d0b..90f75232699 100644
--- a/src/devices/bus/vc4000/slot.h
+++ b/src/devices/bus/vc4000/slot.h
@@ -6,8 +6,6 @@
#include "imagedev/cartrom.h"
-#define VC4000SLOT_ROM_REGION_TAG ":cart:rom"
-
/* PCB */
enum
{
@@ -32,7 +30,7 @@ public:
virtual uint8_t read_ram(offs_t offset) { return 0xff; }
virtual void write_ram(offs_t offset, uint8_t data) { }
- void rom_alloc(uint32_t size, const char *tag);
+ void rom_alloc(uint32_t size);
void ram_alloc(uint32_t size);
uint8_t* get_rom_base() { return m_rom; }
uint8_t* get_ram_base() { return &m_ram[0]; }