summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/vtech/memexp/memexp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/vtech/memexp/memexp.h')
-rw-r--r--src/devices/bus/vtech/memexp/memexp.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/devices/bus/vtech/memexp/memexp.h b/src/devices/bus/vtech/memexp/memexp.h
index 5fd3ee6a449..75013fe98a4 100644
--- a/src/devices/bus/vtech/memexp/memexp.h
+++ b/src/devices/bus/vtech/memexp/memexp.h
@@ -53,15 +53,7 @@ class vtech_memexp_slot_device : public device_t, public device_single_card_slot
friend class device_vtech_memexp_interface;
public:
// construction/destruction
- vtech_memexp_slot_device(machine_config const &mconfig, char const *tag, device_t *owner)
- : vtech_memexp_slot_device(mconfig, tag, owner, (uint32_t)0)
- {
- option_reset();
- vtech_memexp_carts(*this);
- set_default_option(nullptr);
- set_fixed(false);
- }
- vtech_memexp_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ vtech_memexp_slot_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL());
virtual ~vtech_memexp_slot_device();
template <typename T> void set_memspace(T &&tag, int spacenum) { m_memspace.set_tag(std::forward<T>(tag), spacenum); }
@@ -114,7 +106,7 @@ class vtech_memexp_device : public device_t, public device_vtech_memexp_interfac
{
public:
// construction/destruction
- vtech_memexp_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock);
+ vtech_memexp_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock);
// from host
virtual uint8_t mreq_r(offs_t offset) override;
7d68'>Removed global videoram, colorram, paletteram, and spriteram. Aaron Giles2009-11-281-5/+5 * Introduced a generic_pointers structure within machine that is Aaron Giles2009-11-261-8/+8 * Enforce a minimum tag length of 3 characters. This will enable Aaron Giles2009-11-151-3/+3 * Identify puyoj set as Rev B and correct various rom names [Smitdogg, Dumping ... Brian Troha2009-11-061-14/+14 * get rid of 8 character limitation for many clones Yasuhiro Ogawa2009-07-241-2/+2 * Removed second parameter from MDRV_CPU_PROGRAM_MAP, MDRV_CPU_DATA_MAP, Aaron Giles2009-05-091-1/+1 * A few number-to-tag changes in megadrive/sms based drivers. Fabio Priuli2009-05-051-1/+2 * Made a few more number-to-tag conversions. Also, removed chd.h includes from ... Fabio Priuli2009-05-051-1/+0 * More numbers-to-tags changes. Also, removed two unneeded variables in megadri... Fabio Priuli2009-04-301-16/+15 * Bulk change alert. Aaron Giles2009-04-261-5/+5 * Removed device types from device queries that use tags, under the Aaron Giles2009-03-021-5/+5 * From: Atari Ace [mailto:atari_ace@verizon.net] Aaron Giles2009-02-261-1/+1 * Device tag renaming. Moving away from generic names like "main" Aaron Giles2009-02-251-38/+38 * Ok, this is The Big One. Aaron Giles2009-02-111-44/+19 * From: Atari Ace [mailto:atari_ace@verizon.net] Aaron Giles2009-01-141-23/+11 * Changed save state system to accept machine parameters where Aaron Giles2008-12-051-3/+3 * Removed fillbitmap() macro in favor of direct calls to bitmap_fill(). Aaron Giles2008-12-041-1/+1 * Another big one. Aaron Giles2008-11-201-13/+13 * WARNING: this compiles, but not fully cleanly, and a number of drivers Aaron Giles2008-11-141-16/+16 * Massive API cleanup/change. The primary goal is that all CPU- Aaron Giles2008-11-131-1/+1 * Major cpuintrf changes: Aaron Giles2008-11-101-2/+2 * Here's another MAME tidy patch. This one adds missing const/statics, Aaron Giles2008-11-021-15/+0 * Cleanups and version bump.mame0127u8 Aaron Giles2008-10-131-1/+1 * should bring ribbit back to where it was. davidhay2008-10-111-23/+23 * video disable davidhay2008-10-111-0/+8 * no need to call this. davidhay2008-10-111-1/+1 * segac2 updates - breaks ribbit for now. this isn't really ready yet, but sin... davidhay2008-10-111-83/+130 * From: Atari Ace [mailto:atari_ace@verizon.net] Aaron Giles2008-09-111-1/+1 * reverted unit mask changes and removed the unused & unsafe memory_install fun... smf-2008-08-181-13/+13 * Added unit mask to all memory installs that override the bus width. You could...