diff options
Diffstat (limited to 'src/mame/namco/ns11prot.cpp')
-rw-r--r-- | src/mame/namco/ns11prot.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mame/namco/ns11prot.cpp b/src/mame/namco/ns11prot.cpp index b39e0dd98ee..2faf7e6e160 100644 --- a/src/mame/namco/ns11prot.cpp +++ b/src/mame/namco/ns11prot.cpp @@ -9,7 +9,7 @@ #include "emu.h" #include "ns11prot.h" -ns11_keycus_device::ns11_keycus_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock) : +ns11_keycus_device::ns11_keycus_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock) : device_t(mconfig, type, tag, owner, clock) { } @@ -30,7 +30,7 @@ void ns11_keycus_device::device_reset() /* tekken 2 */ -keycus_c406_device::keycus_c406_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : +keycus_c406_device::keycus_c406_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : ns11_keycus_device(mconfig, KEYCUS_C406, tag, owner, clock) { } @@ -70,7 +70,7 @@ DEFINE_DEVICE_TYPE(KEYCUS_C406, keycus_c406_device, "keycus_c406", "Namco C406 K /* soul edge */ -keycus_c409_device::keycus_c409_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : +keycus_c409_device::keycus_c409_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : ns11_keycus_device(mconfig, KEYCUS_C409, tag, owner, clock) { } @@ -115,7 +115,7 @@ DEFINE_DEVICE_TYPE(KEYCUS_C409, keycus_c409_device, "keycus_c409", "Namco C409 K /* dunk mania */ -keycus_c410_device::keycus_c410_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : +keycus_c410_device::keycus_c410_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : ns11_keycus_device(mconfig, KEYCUS_C410, tag, owner, clock) { } @@ -169,7 +169,7 @@ DEFINE_DEVICE_TYPE(KEYCUS_C410, keycus_c410_device, "keycus_c410", "Namco C410 K /* prime goal ex */ -keycus_c411_device::keycus_c411_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : +keycus_c411_device::keycus_c411_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : ns11_keycus_device(mconfig, KEYCUS_C411, tag, owner, clock) { } @@ -225,7 +225,7 @@ DEFINE_DEVICE_TYPE(KEYCUS_C411, keycus_c411_device, "keycus_c411", "Namco C411 K /* xevious 3d/g */ -keycus_c430_device::keycus_c430_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : +keycus_c430_device::keycus_c430_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : ns11_keycus_device(mconfig, KEYCUS_C430, tag, owner, clock) { } @@ -284,7 +284,7 @@ DEFINE_DEVICE_TYPE(KEYCUS_C430, keycus_c430_device, "keycus_c430", "Namco C430 K /* dancing eyes */ -keycus_c431_device::keycus_c431_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : +keycus_c431_device::keycus_c431_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : ns11_keycus_device(mconfig, KEYCUS_C431, tag, owner, clock) { } @@ -342,7 +342,7 @@ DEFINE_DEVICE_TYPE(KEYCUS_C431, keycus_c431_device, "keycus_c431", "Namco C431 K /* pocket racer */ -keycus_c432_device::keycus_c432_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : +keycus_c432_device::keycus_c432_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : ns11_keycus_device(mconfig, KEYCUS_C432, tag, owner, clock) { } @@ -402,7 +402,7 @@ DEFINE_DEVICE_TYPE(KEYCUS_C432, keycus_c432_device, "keycus_c432", "Namco C432 K /* star sweep */ -keycus_c442_device::keycus_c442_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : +keycus_c442_device::keycus_c442_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : ns11_keycus_device(mconfig, KEYCUS_C442, tag, owner, clock) { } @@ -450,7 +450,7 @@ DEFINE_DEVICE_TYPE(KEYCUS_C442, keycus_c442_device, "keycus_c442", "Namco C442 K /* kosodate quiz my angel 3 / point blank 2 */ -keycus_c443_device::keycus_c443_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : +keycus_c443_device::keycus_c443_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : ns11_keycus_device(mconfig, KEYCUS_C443, tag, owner, clock) { } |