mirror of
https://github.com/holub/mame
synced 2025-10-06 00:54:22 +03:00
(MESS) a1bus: licensing and save state cleanups (nw)
This commit is contained in:
parent
74f7962b39
commit
a6128baac7
@ -1,3 +1,5 @@
|
|||||||
|
// license:BSD-3-Clause
|
||||||
|
// copyright-holders:R. Belmont
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a1cassette.c
|
a1cassette.c
|
||||||
@ -81,6 +83,8 @@ void a1bus_cassette_device::device_start()
|
|||||||
|
|
||||||
install_device(0xc000, 0xc0ff, read8_delegate(FUNC(a1bus_cassette_device::cassette_r), this), write8_delegate(FUNC(a1bus_cassette_device::cassette_w), this));
|
install_device(0xc000, 0xc0ff, read8_delegate(FUNC(a1bus_cassette_device::cassette_r), this), write8_delegate(FUNC(a1bus_cassette_device::cassette_w), this));
|
||||||
install_bank(0xc100, 0xc1ff, 0, 0, (char *)"bank_a1cas", m_rom);
|
install_bank(0xc100, 0xc1ff, 0, 0, (char *)"bank_a1cas", m_rom);
|
||||||
|
|
||||||
|
save_item(NAME(m_cassette_output_flipflop));
|
||||||
}
|
}
|
||||||
|
|
||||||
void a1bus_cassette_device::device_reset()
|
void a1bus_cassette_device::device_reset()
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
|
// license:BSD-3-Clause
|
||||||
|
// copyright-holders:R. Belmont
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a1cassette.h
|
a1cassette.h
|
||||||
|
|
||||||
Apple II 6850 MIDI card, as made by Passport, Yamaha, and others.
|
Apple I Cassette Interface
|
||||||
|
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:BSD-3-Clause
|
||||||
|
// copyright-holders:R. Belmont
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a1cffa.c
|
a1cffa.c
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// license:BSD-3-Clause
|
||||||
|
// copyright-holders:R. Belmont
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
||||||
a1cffa.h
|
a1cffa.h
|
||||||
|
Loading…
Reference in New Issue
Block a user