From b160045bf881e05639f251aaab2e0f6f26ece87d Mon Sep 17 00:00:00 2001 From: hap Date: Sat, 31 Aug 2024 14:52:35 +0200 Subject: misc: comment out s100 rdy to z80 wait pin as it looks like it's not fully implemented in bus/s100 --- src/mame/morrow/mpz80.cpp | 2 +- src/mame/northstar/horizon.cpp | 2 +- src/mame/skeleton/xor100.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mame/morrow/mpz80.cpp b/src/mame/morrow/mpz80.cpp index 642f4326444..8fb4a382895 100644 --- a/src/mame/morrow/mpz80.cpp +++ b/src/mame/morrow/mpz80.cpp @@ -723,7 +723,7 @@ void mpz80_state::mpz80(machine_config &config) S100_BUS(config, m_s100, XTAL(4'000'000) / 2); m_s100->irq().set(FUNC(mpz80_state::s100_pint_w)); m_s100->nmi().set(FUNC(mpz80_state::s100_nmi_w)); - m_s100->rdy().set_inputline(m_maincpu, Z80_INPUT_LINE_WAIT); + //m_s100->rdy().set_inputline(m_maincpu, Z80_INPUT_LINE_WAIT); S100_SLOT(config, S100_TAG ":1", mpz80_s100_cards, "mm65k16s"); S100_SLOT(config, S100_TAG ":2", mpz80_s100_cards, "wunderbus"); S100_SLOT(config, S100_TAG ":3", mpz80_s100_cards, "dj2db"); diff --git a/src/mame/northstar/horizon.cpp b/src/mame/northstar/horizon.cpp index be99777a29c..160fd79ff19 100644 --- a/src/mame/northstar/horizon.cpp +++ b/src/mame/northstar/horizon.cpp @@ -213,7 +213,7 @@ void horizon_state::horizon(machine_config &config) // S-100 S100_BUS(config, m_s100, XTAL(8'000'000) / 4); - m_s100->rdy().set_inputline(m_maincpu, Z80_INPUT_LINE_WAIT); + //m_s100->rdy().set_inputline(m_maincpu, Z80_INPUT_LINE_WAIT); //S100_SLOT(config, S100_TAG":1", horizon_s100_cards, nullptr, nullptr); // CPU S100_SLOT(config, "s100:2", horizon_s100_cards, nullptr); // RAM S100_SLOT(config, "s100:3", horizon_s100_cards, "mdsad"); // MDS diff --git a/src/mame/skeleton/xor100.cpp b/src/mame/skeleton/xor100.cpp index 85a2b51233b..82ae418bab6 100644 --- a/src/mame/skeleton/xor100.cpp +++ b/src/mame/skeleton/xor100.cpp @@ -640,7 +640,7 @@ void xor100_state::xor100(machine_config &config) // S-100 S100_BUS(config, m_s100, 8_MHz_XTAL / 4); - m_s100->rdy().set_inputline(m_maincpu, Z80_INPUT_LINE_WAIT); + //m_s100->rdy().set_inputline(m_maincpu, Z80_INPUT_LINE_WAIT); S100_SLOT(config, S100_TAG ":1", xor100_s100_cards, nullptr); S100_SLOT(config, S100_TAG ":2", xor100_s100_cards, nullptr); S100_SLOT(config, S100_TAG ":3", xor100_s100_cards, nullptr); -- cgit v1.2.3