summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-12-06 23:05:30 -0500
committer AJR <ajrhacker@users.noreply.github.com>2019-12-06 23:05:52 -0500
commit674c8c9f865ca546f6f6634a49caf32c9d350901 (patch)
tree0da64615bfcdff349d8f8b90868d2a67f89a9f59
parent77ce4fb342c1baf9dc38d4968555a8dd6680ba04 (diff)
ec184x.cpp: Change CPU types to agree with region widths (nw)
This is a bit speculative, but reliable information about these machines seems hard to find.
-rw-r--r--src/mame/drivers/ec184x.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/ec184x.cpp b/src/mame/drivers/ec184x.cpp
index f88b41d467b..956838424d1 100644
--- a/src/mame/drivers/ec184x.cpp
+++ b/src/mame/drivers/ec184x.cpp
@@ -236,7 +236,7 @@ void ec184x_state::ec1847_io(address_map &map)
// XXX verify everything
void ec184x_state::ec1840(machine_config &config)
{
- I8088(config, m_maincpu, 4096000);
+ I8086(config, m_maincpu, 4096000);
m_maincpu->set_addrmap(AS_PROGRAM, &ec184x_state::ec1840_map);
m_maincpu->set_addrmap(AS_IO, &ec184x_state::ec1840_io);
m_maincpu->set_irq_acknowledge_callback("mb:pic8259", FUNC(pic8259_device::inta_cb));
@@ -293,7 +293,7 @@ void ec184x_state::ec1841(machine_config &config)
// XXX verify everything
void ec184x_state::ec1847(machine_config &config)
{
- I8088(config, m_maincpu, 4772720);
+ I8086(config, m_maincpu, 4772720);
m_maincpu->set_addrmap(AS_PROGRAM, &ec184x_state::ec1847_map);
m_maincpu->set_addrmap(AS_IO, &ec184x_state::ec1847_io);
m_maincpu->set_irq_acknowledge_callback("mb:pic8259", FUNC(pic8259_device::inta_cb));