summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/psx/rcnt.h
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2022-06-16 12:47:52 +0200
committer Olivier Galibert <galibert@pobox.com>2025-04-29 23:06:41 +0200
commit45d4cd52a8194f2ef9e0383cfb2e2a35634af6ff (patch)
tree4e8d8fcb7382a5e9e0bce5ec59939bcfbe67155a /src/devices/cpu/psx/rcnt.h
parent5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff)
full xtal conversionxtal
Diffstat (limited to 'src/devices/cpu/psx/rcnt.h')
-rw-r--r--src/devices/cpu/psx/rcnt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/psx/rcnt.h b/src/devices/cpu/psx/rcnt.h
index 8e0a471f4e1..61e1e852195 100644
--- a/src/devices/cpu/psx/rcnt.h
+++ b/src/devices/cpu/psx/rcnt.h
@@ -27,7 +27,7 @@ DECLARE_DEVICE_TYPE(PSX_RCNT, psxrcnt_device)
class psxrcnt_device : public device_t
{
public:
- psxrcnt_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ psxrcnt_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
// configuration helpers
auto irq0() { return m_irq0_handler.bind(); }
iuli2013-03-101-20/+20 * m6809: Now setting the E condition code when SWI instruction is executed (nw) Nathan Woods2013-03-091-0/+1 * Fixed subtle problem in 6x09 CWAI instruction; rocnrope is now fixed (nw) Nathan Woods2013-03-091-0/+1 * fixed uninitialized memory in src/emu/cpu/hd61700/hd61700.c (nw) Oliver Stöneberg2013-03-091-4/+9 * fixed uninitialized members in src/emu/cpu/cosmac/cosmac.c (nw) Oliver Stöneberg2013-03-091-0/+3 * Konami CPU fix, parodius works now (nw) Nathan Woods2013-03-091-4/+4 * m6809 fix; vectrex works now (nw) Nathan Woods2013-03-092-3/+24 * (MESS) ngp.c: Made the drivers a bit more user friendly. (nw) Wilbert Pol2013-03-081-0/+4 * (typo) Michaël Banaan Ananas2013-03-085-5/+5 * Fixed bug in konami/6309 16-bit NEG; quarth is now playable again (nw) Nathan Woods2013-03-081-1/+1 * Konami CPU EXG bug fix; m6809 CPU EXG/TFR cleanups (nw) Nathan Woods2013-03-083-52/+52 * m6809 reset fix; resetting trackfld works now (nw) Nathan Woods2013-03-081-2/+2 * picked up a couple of copy & paste bugs with the pbr register (nw) smf-2013-03-071-2/+2 * Added tms9900, tms9980 & tms9995 to unidasm. Other tms99xx cpu cores are gene... smf-2013-03-078-9/+22 * fixed uninitialized member in src/emu/cpu/tms9900/tms9995.c (nw) Oliver Stöneberg2013-03-061-0/+1 * m6809: Get rid of the preprocessor pass, for great justice [O. Galibert] Olivier Galibert2013-03-062-21/+29 * added SCUDSP cpu type, though it currently only has a disassembler (nw) smf-2013-03-061-0/+13 * moved CPU_DISASSEMBLE into the disassembler (nw) smf-2013-03-062-22/+12 * tms57002 works in unidasm, disassemble interface can be revisited when all cp... smf-2013-03-062-11/+18 * reduced some duplication in the nec disassembler interface (nw) smf-2013-03-063-10/+4 * fix stack overflow in disasm_disassemble (nw) smf-2013-03-062-2/+2 * no idea why these used CPU_DISASSEMBLE but didn't use CPU_DISASSEMBLE_NAME fo... smf-2013-03-062-2/+2 * pass this instead of NULL and options instead of 0 in the class based cpu cor... smf-2013-03-0615-16/+16 * changed CPU_DISASSEMBLE to use cpu_device * instead of legacy_cpu_device *, s... smf-2013-03-062-3/+4 * Clang warning fixes: (nw) Phil Bennett2013-03-061-2/+4 * Fixed bug in 6x09 DAA instruction; finalizr (and probably other games) now Nathan Woods2013-03-061-2/+2 * made 6309 and konami compatible with unidasm, only 6809 to go (nw) smf-2013-03-064-6/+6 * Fixed endianness Angelo Salese2013-03-051-3/+3 * m6809: Fixed compile on older OS X tools. (nw) Curt Coder2013-03-053-42/+60 * Konami CPU fixes; simpsons gets further now (nw)