mirror of
https://github.com/holub/mame
synced 2025-07-04 01:18:59 +03:00
ffruits: Why not use the known XTAL value instead? (nw)
This commit is contained in:
parent
bd258c585f
commit
a83ffb2eba
@ -4,7 +4,7 @@
|
|||||||
Skeleton driver for Cromptons Leisure Machines' Frantic Fruits redemption game.
|
Skeleton driver for Cromptons Leisure Machines' Frantic Fruits redemption game.
|
||||||
|
|
||||||
Hardware overview:
|
Hardware overview:
|
||||||
Main CPU: TS80C3X2-MCA
|
Main CPU: TS80C32X2-MCA
|
||||||
Sound: CD sound?
|
Sound: CD sound?
|
||||||
Other: M48T08 timekeeper RAM
|
Other: M48T08 timekeeper RAM
|
||||||
OSC: 11.0592 MHz
|
OSC: 11.0592 MHz
|
||||||
@ -81,7 +81,7 @@ INPUT_PORTS_END
|
|||||||
void cromptons_state::cromptons(machine_config &config)
|
void cromptons_state::cromptons(machine_config &config)
|
||||||
{
|
{
|
||||||
/* basic machine hardware */
|
/* basic machine hardware */
|
||||||
I80C32(config, m_maincpu, 11.004_MHz_XTAL); // TS80C3X2-MCA
|
I80C32(config, m_maincpu, 11.0592_MHz_XTAL); // TS80C32X2-MCA
|
||||||
m_maincpu->set_addrmap(AS_PROGRAM, &cromptons_state::prg_map);
|
m_maincpu->set_addrmap(AS_PROGRAM, &cromptons_state::prg_map);
|
||||||
m_maincpu->set_addrmap(AS_IO, &cromptons_state::io_map);
|
m_maincpu->set_addrmap(AS_IO, &cromptons_state::io_map);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user