diff options
author | 2014-10-11 03:55:00 +0000 | |
---|---|---|
committer | 2014-10-11 03:55:00 +0000 | |
commit | abb5eb3b0c50420d8459c7dc03a6a20773688a48 (patch) | |
tree | 1d1045a61e5686f97e231bf32feddf20b7369bdf /src/emu/bus/c64/dela_ep256.h | |
parent | fa075429a8dba50ea0fdf1e4a7707238912c80cb (diff) |
a bunch of generic eprom sockets. nw.
Diffstat (limited to 'src/emu/bus/c64/dela_ep256.h')
-rw-r--r-- | src/emu/bus/c64/dela_ep256.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/bus/c64/dela_ep256.h b/src/emu/bus/c64/dela_ep256.h index bba52a07ab2..d5ac6fe9ff2 100644 --- a/src/emu/bus/c64/dela_ep256.h +++ b/src/emu/bus/c64/dela_ep256.h @@ -17,7 +17,8 @@ #include "emu.h" #include "exp.h" -#include "imagedev/cartslot.h" +#include "bus/generic/slot.h" +#include "bus/generic/carts.h" @@ -35,7 +36,6 @@ public: c64_dela_ep256_cartridge_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); // optional information overrides - virtual const rom_entry *device_rom_region() const; virtual machine_config_constructor device_mconfig_additions() const; protected: @@ -48,9 +48,9 @@ protected: virtual void c64_cd_w(address_space &space, offs_t offset, UINT8 data, int sphi2, int ba, int roml, int romh, int io1, int io2); private: - required_memory_region m_eprom; + generic_slot_device *m_eproms[8]; - UINT8 m_bank; + UINT8 m_bank, m_socket; int m_reset; }; |