mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
apple/apple2e.cpp: Bring the indentation back to spec. [R. Belmont]
This commit is contained in:
parent
eb29c49186
commit
952ff31d56
1 changed files with 13 additions and 13 deletions
|
@ -1778,23 +1778,23 @@ void apple2e_state::do_io(int offset, bool is_iic)
|
|||
return;
|
||||
}
|
||||
|
||||
if ((offset & 0xf0) == 0x20) // tape out / ROM bank on IIc/IIc+
|
||||
{
|
||||
if (m_cassette)
|
||||
if ((offset & 0xf0) == 0x20) // tape out / ROM bank on IIc/IIc+
|
||||
{
|
||||
if (m_cassette)
|
||||
{
|
||||
// Officially Apple only documents this softswitch at $c020 but
|
||||
// all models with a tape interface will respond to any of the $c02x
|
||||
// addresses
|
||||
// Officially Apple only documents this softswitch at $c020 but
|
||||
// all models with a tape interface will respond to any of the $c02x
|
||||
// addresses.
|
||||
m_cassette_state ^= 1;
|
||||
m_cassette->output(m_cassette_state ? 1.0f : -1.0f);
|
||||
}
|
||||
|
||||
if (is_iic)
|
||||
|
||||
if (is_iic)
|
||||
{
|
||||
// Apple IIc Tech Reference 1st edition lists this softswitch at $c028 while
|
||||
// the 2nd edition lists it at $c02x. Both the IIc and IIc Plus will respond to
|
||||
// $c02x.
|
||||
m_romswitch = !m_romswitch;
|
||||
// Apple IIc Tech Reference 1st edition lists this softswitch at $c028 while
|
||||
// the 2nd edition lists it at $c02x. Both the IIc and IIc Plus will respond to
|
||||
// $c02x.
|
||||
m_romswitch = !m_romswitch;
|
||||
update_slotrom_banks();
|
||||
lcrom_update();
|
||||
|
||||
|
@ -1806,7 +1806,7 @@ void apple2e_state::do_io(int offset, bool is_iic)
|
|||
m_35sel = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
switch (offset)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue