Revert "tms9980a: Added missing clock divider."

This reverts commit a9bdb70902.
This commit is contained in:
AJR 2019-04-14 20:15:30 -04:00
parent a9bdb70902
commit 55558bb1d3

View File

@ -79,11 +79,10 @@
/**************************************************************************** /****************************************************************************
Constructor Constructor
The external clock is divided by 4 internally
****************************************************************************/ ****************************************************************************/
tms9980a_device::tms9980a_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock) tms9980a_device::tms9980a_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock)
: tms99xx_device(mconfig, type, tag, 8, 14, 11, owner, clock / 4 ) : tms99xx_device(mconfig, type, tag, 8, 14, 11, owner, clock)
{ {
} }