summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/ensoniq/esqvfd.cpp
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/mame/ensoniq/esqvfd.cpp
parent5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff)
full xtal conversionxtal
Diffstat (limited to 'src/mame/ensoniq/esqvfd.cpp')
-rw-r--r--src/mame/ensoniq/esqvfd.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/ensoniq/esqvfd.cpp b/src/mame/ensoniq/esqvfd.cpp
index 68b913f9c22..248e40951ba 100644
--- a/src/mame/ensoniq/esqvfd.cpp
+++ b/src/mame/ensoniq/esqvfd.cpp
@@ -116,7 +116,7 @@ static const uint16_t font[]=
0x0000, // 0000 0000 0000 0000 (DEL)
};
-esqvfd_device::esqvfd_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, dimensions_param &&dimensions) :
+esqvfd_device::esqvfd_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, dimensions_param &&dimensions) :
device_t(mconfig, type, tag, owner, clock),
m_vfds(std::move(std::get<0>(dimensions))),
m_rows(std::get<1>(dimensions)),
@@ -292,7 +292,7 @@ bool esq2x40_device::write_contents(std::ostream &o)
}
-esq2x40_device::esq2x40_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
+esq2x40_device::esq2x40_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) :
esqvfd_device(mconfig, ESQ2X40, tag, owner, clock, make_dimensions<2, 40>(*this))
{
}
@@ -341,7 +341,7 @@ void esq1x22_device::write_char(int data)
update_display();
}
-esq1x22_device::esq1x22_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
+esq1x22_device::esq1x22_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) :
esqvfd_device(mconfig, ESQ1X22, tag, owner, clock, make_dimensions<1, 22>(*this))
{
}
@@ -404,7 +404,7 @@ void esq2x40_sq1_device::write_char(int data)
}
}
-esq2x40_sq1_device::esq2x40_sq1_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
+esq2x40_sq1_device::esq2x40_sq1_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) :
esqvfd_device(mconfig, ESQ2X40_SQ1, tag, owner, clock, make_dimensions<2, 40>(*this))
{
m_wait87shift = false;