summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2020-09-22 08:10:20 -0400
committer arbee <rb6502@users.noreply.github.com>2020-09-22 08:10:20 -0400
commita6190a0b282cfbca8ba947a78a840f30eeba52be (patch)
tree5c4e78c6fe351b01e00b8bac2e245678b5715993
parentd4c180e81f729e556bfcb1f92107b7c8d9a9150b (diff)
apple3 updates: [Rob Justice, R. Belmont]
- Fix missed typo in the BIOS loading - Update slot IRQ handling - Start infrastructure to allow emulating the Titan cards
-rw-r--r--src/mame/drivers/apple3.cpp6
-rw-r--r--src/mame/includes/apple3.h3
-rw-r--r--src/mame/machine/apple3.cpp58
3 files changed, 61 insertions, 6 deletions
diff --git a/src/mame/drivers/apple3.cpp b/src/mame/drivers/apple3.cpp
index c38c1939b74..72b5a64d854 100644
--- a/src/mame/drivers/apple3.cpp
+++ b/src/mame/drivers/apple3.cpp
@@ -103,7 +103,7 @@ void apple3_state::apple3(machine_config &config)
m_a2bus->set_space(m_maincpu, AS_PROGRAM);
m_a2bus->irq_w().set(FUNC(apple3_state::a2bus_irq_w));
m_a2bus->nmi_w().set(FUNC(apple3_state::a2bus_nmi_w));
- //m_a2bus->inh_w().set(FUNC(apple3_state::a2bus_inh_w));
+ m_a2bus->inh_w().set(FUNC(apple3_state::a2bus_inh_w));
m_a2bus->dma_w().set_inputline(m_maincpu, INPUT_LINE_HALT);
A2BUS_SLOT(config, "sl1", m_a2bus, apple3_cards, nullptr);
A2BUS_SLOT(config, "sl2", m_a2bus, apple3_cards, nullptr);
@@ -357,10 +357,10 @@ INPUT_PORTS_END
ROM_START(apple3)
ROM_REGION(0x1000,"maincpu",0)
ROM_SYSTEM_BIOS(0, "original", "Apple /// boot ROM")
- ROMX_LOAD( "apple3.rom", 0x0000, 0x1000, CRC(55e8eec9) SHA1(579ee4cd2b208d62915a0aa482ddc2744ff5e967), ROM_BIOS(1))
+ ROMX_LOAD( "apple3.rom", 0x0000, 0x1000, CRC(55e8eec9) SHA1(579ee4cd2b208d62915a0aa482ddc2744ff5e967), ROM_BIOS(0))
ROM_SYSTEM_BIOS(1, "soshd", "Rob Justice SOSHDBOOT")
- ROMX_LOAD( "soshdboot.bin", 0x000000, 0x001000, CRC(fd5ac9e2) SHA1(ba466a54ddb7f618c4f18f344754343c5945b417), ROM_BIOS(0))
+ ROMX_LOAD( "soshdboot.bin", 0x000000, 0x001000, CRC(fd5ac9e2) SHA1(ba466a54ddb7f618c4f18f344754343c5945b417), ROM_BIOS(1))
ROM_END
/* YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME */
diff --git a/src/mame/includes/apple3.h b/src/mame/includes/apple3.h
index 58b86f1ee3b..2eb967b4dde 100644
--- a/src/mame/includes/apple3.h
+++ b/src/mame/includes/apple3.h
@@ -127,6 +127,7 @@ public:
DECLARE_WRITE_LINE_MEMBER(a2bus_irq_w);
DECLARE_WRITE_LINE_MEMBER(a2bus_nmi_w);
DECLARE_WRITE_LINE_MEMBER(vbl_w);
+ DECLARE_WRITE_LINE_MEMBER(a2bus_inh_w);
// these need to be public for now
uint32_t m_flags;
@@ -165,6 +166,8 @@ private:
int m_pdl_charge;
int m_va, m_vb, m_vc;
int m_smoothscr;
+
+ int m_inh_state;
};
#endif // MAME_INCLUDES_APPLE3_H
diff --git a/src/mame/machine/apple3.cpp b/src/mame/machine/apple3.cpp
index 1a4bf520389..f5849d8ca85 100644
--- a/src/mame/machine/apple3.cpp
+++ b/src/mame/machine/apple3.cpp
@@ -189,6 +189,16 @@ uint8_t apple3_state::apple3_c0xx_r(offs_t offset)
result = (m_joybuttons->read() & 8) ? 0x80 : 0x00;
break;
+ case 0x64: // slot 2 IRQ status (negative logic)
+ case 0x6c:
+ result = (m_a2bus->get_a2bus_irq_mask() & (1<<2)) ? 0 : 0x80;
+ break;
+
+ case 0x65: // slot 1 IRQ status (negative logic)
+ case 0x6d:
+ result = (m_a2bus->get_a2bus_irq_mask() & (1<<1)) ? 0 : 0x80;
+ break;
+
case 0x66: // paddle A/D conversion done (bit 7 = 1 while counting, 0 when done)
case 0x6e:
result = m_ramp_active ? 0x80 : 0x00;
@@ -646,6 +656,7 @@ void apple3_state::machine_reset()
m_analog_sel = 0;
m_ramp_active = false;
m_charwrt = false;
+ m_inh_state = false;
m_fdc->set_floppies_4(floppy0, floppy1, floppy2, floppy3);
@@ -653,7 +664,10 @@ void apple3_state::machine_reset()
m_scanend->adjust(attotime::never);
}
-
+WRITE_LINE_MEMBER(apple3_state::a2bus_inh_w)
+{
+ m_inh_state = state;
+}
uint8_t *apple3_state::apple3_get_indexed_addr(offs_t offset)
{
@@ -691,6 +705,7 @@ void apple3_state::init_apple3()
m_vb = 0;
m_vc = 0;
m_smoothscr = 0;
+ m_inh_state = false;
// kludge round +12v pull up resistors, which after conversion will bring this low when nothing is plugged in. issue also affects dcd/dsr but those don't affect booting.
m_acia->write_cts(0);
@@ -743,6 +758,7 @@ void apple3_state::init_apple3()
save_item(NAME(m_vc));
save_item(NAME(m_smoothscr));
save_item(NAME(m_charwrt));
+ save_item(NAME(m_inh_state));
}
void apple3_state::device_post_load()
@@ -754,6 +770,24 @@ uint8_t apple3_state::apple3_memory_r(offs_t offset)
{
uint8_t rv = 0xff;
+ if (m_inh_state)
+ {
+ for (int slot = 1; slot < 4; slot++)
+ {
+ device_a2bus_card_interface *slotdevice = m_a2bus->get_a2bus_card(slot);
+ if (slotdevice != nullptr)
+ {
+ if ((slotdevice->inh_type() & INH_READ) == INH_READ)
+ {
+ if ((offset >= slotdevice->inh_start()) && (offset <= slotdevice->inh_end()))
+ {
+ return slotdevice->read_inh_rom(offset);
+ }
+ }
+ }
+ }
+ }
+
// (zp), y or (zp,x) read
if (!machine().side_effects_disabled())
{
@@ -891,6 +925,25 @@ uint8_t apple3_state::apple3_memory_r(offs_t offset)
void apple3_state::apple3_memory_w(offs_t offset, uint8_t data)
{
+ if (m_inh_state)
+ {
+ for (int slot = 1; slot < 4; slot++)
+ {
+ device_a2bus_card_interface *slotdevice = m_a2bus->get_a2bus_card(slot);
+ if (slotdevice != nullptr)
+ {
+ if ((slotdevice->inh_type() & INH_WRITE) == INH_WRITE)
+ {
+ if ((offset >= slotdevice->inh_start()) && (offset <= slotdevice->inh_end()))
+ {
+ slotdevice->write_inh_rom(offset, data);
+ return;
+ }
+ }
+ }
+ }
+ }
+
if ((m_indir_bank & 0x80) && (offset >= 0x100))
{
uint8_t *test;
@@ -1314,8 +1367,7 @@ WRITE_LINE_MEMBER(apple3_state::a2bus_irq_w)
{
uint8_t irq_mask = m_a2bus->get_a2bus_irq_mask();
- m_via[1]->write_ca1(state);
- m_via[1]->write_pa7(state);
+ m_via[0]->write_ca1(state);
if (irq_mask & (1<<4))
{