diff options
Diffstat (limited to 'src/devices/bus/gameboy')
-rw-r--r-- | src/devices/bus/gameboy/mbc.cpp | 2 | ||||
-rw-r--r-- | src/devices/bus/gameboy/rom.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/gameboy/mbc.cpp b/src/devices/bus/gameboy/mbc.cpp index 4bad4a2522d..d270bf6f0aa 100644 --- a/src/devices/bus/gameboy/mbc.cpp +++ b/src/devices/bus/gameboy/mbc.cpp @@ -88,7 +88,7 @@ namespace { class rom_mbc_device_base : public mbc_ram_device_base<mbc_dual_device_base> { protected: - rom_mbc_device_base(machine_config const &mconfig, device_type type, char const *tag, device_t *owner, u32 clock) : + rom_mbc_device_base(machine_config const &mconfig, device_type type, char const *tag, device_t *owner, const XTAL &clock) : mbc_ram_device_base<mbc_dual_device_base>(mconfig, type, tag, owner, clock), m_view_ram(*this, "ram"), m_bank_lines{ 0U, 0U } diff --git a/src/devices/bus/gameboy/rom.cpp b/src/devices/bus/gameboy/rom.cpp index cf593b95c8a..e7729b30850 100644 --- a/src/devices/bus/gameboy/rom.cpp +++ b/src/devices/bus/gameboy/rom.cpp @@ -50,7 +50,7 @@ namespace { class sachen_mmc_device_base : public mbc_dual_uniform_device_base { protected: - sachen_mmc_device_base(machine_config const &mconfig, device_type type, char const *tag, device_t *owner, u32 clock) : + sachen_mmc_device_base(machine_config const &mconfig, device_type type, char const *tag, device_t *owner, const XTAL &clock) : mbc_dual_uniform_device_base(mconfig, type, tag, owner, clock), m_bank_mux_rom(0U), m_bank_sel_rom{ 0U, 0U } |