summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8500/h8532.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/h8500/h8532.cpp')
-rw-r--r--src/devices/cpu/h8500/h8532.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/h8500/h8532.cpp b/src/devices/cpu/h8500/h8532.cpp
index 20c9869c4ee..484b09573ca 100644
--- a/src/devices/cpu/h8500/h8532.cpp
+++ b/src/devices/cpu/h8500/h8532.cpp
@@ -12,17 +12,17 @@
DEFINE_DEVICE_TYPE(HD6435328, hd6435328_device, "hd6435328", "Hitachi HD6435328 (H8/532)")
DEFINE_DEVICE_TYPE(HD6475328, hd6475328_device, "hd6475328", "Hitachi HD6475328 (H8/532)")
-h8532_device::h8532_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock)
+h8532_device::h8532_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock)
: h8500_device(mconfig, type, tag, owner, clock, 20, 8, 10, 4, address_map_constructor(FUNC(h8532_device::internal_map), this))
{
}
-hd6435328_device::hd6435328_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock)
+hd6435328_device::hd6435328_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock)
: h8532_device(mconfig, HD6435328, tag, owner, clock)
{
}
-hd6475328_device::hd6475328_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock)
+hd6475328_device::hd6475328_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock)
: h8532_device(mconfig, HD6475328, tag, owner, clock)
{
}
8c?s=128&d=retro' /> Aaron Giles2010-03-111-25/+25 * Implemented default EEPROMs to the following drivers [David Haywood] Angelo Salese2010-03-071-27/+136 * new clone added: Fantastic Journey Ver. AAA (Asia) Brian Troha2010-01-301-25/+56 * New games added or promoted from NOT_WORKING Phil Bennett2010-01-191-5/+5 * Correct a long-standing design flaw: device configuration state Aaron Giles2010-01-181-2/+2 * Improved vsnet sprite/roz alignment [David Haywood] Phil Bennett2010-01-171-6/+9 * Replaced vsnetscr GFX ROMs with correct dumps [Team Japump, Dumping Union] Phil Bennett2010-01-161-52/+42 * Bulk driver.h -> emu.h switch. Aaron Giles2010-01-101-1/+1 * Replaced all occurrences of cputag_get_cpu with devtag_get_device: the former... Fabio Priuli2010-01-061-6/+6 * Fixes the gfx rom loading for Race Drivin' Panorama [David Haywood] Angelo Salese2010-01-031-68/+86 * Cleaned up braces in the code so that they are properly balanced. [Atari Ace] Aaron Giles2009-12-281-1/+1 * Results of running the latest srcclean. Aaron Giles2009-12-281-7/+7 * Rename eepromdev.c/h back to eeprom.c/h Aaron Giles2009-12-271-1/+1 * Rename functions and other references to eepromdev_* back to eeprom_* Aaron Giles2009-12-271-4/+4 * Removed _NODEFAULT_ forms of EEPROM driver macros. If you need to add Aaron Giles2009-12-251-1/+1 * Updated konamigx.c, tmnt.c and mystwarr.c to use eeprom device (and removed i... Fabio Priuli2009-12-231-314/+285 * Removed the global "includes" include and instead specify the "includes" path... Phil Bennett2009-12-211-1/+1 * Cleaned-up several drivers; added missing prototypes and removed dead ones, Phil Bennett2009-12-081-26/+0 * More memory system cleanup. Removed SMH_* macros entirely. In Aaron Giles2009-12-051-1/+1 * Removed global videoram, colorram, paletteram, and spriteram. Aaron Giles2009-11-281-4/+4 * Introduced a generic_pointers structure within machine that is Aaron Giles2009-11-261-1/+1 * added device support to the input system. internally this replaces PORT_CUSTO... smf-2009-11-201-21/+17 * Cleanups and version bump.mame0135u1 Aaron Giles2009-11-201-8/+8 * Added dual screen output to the Konami GX Type 3/4 games [David Haywood] Phil Bennett2009-11-191-14/+40 * Kludged TMS check in the VS Net clones, no credit please Angelo Salese2009-11-111-0/+4 * This allows the parent set to boot too, it works just like the Japanese set (... Angelo Salese2009-11-111-1/+2 * (There are a bunch of things that I want to check on it, I'll do them after a... Angelo Salese2009-11-111-22/+30 * Fixed Konami GX type 4 protection seed $d15, used to protect a sprite bank in... Angelo Salese2009-11-111-6/+22 * Safely assumed that sound rom in Rushing Heroes is bad too, there are very no...