summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/apple2e.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2017-11-26 13:33:54 +1100
committer Vas Crabb <vas@vastheman.com>2017-11-26 13:33:54 +1100
commitfd195fdd8ab38f2d69dd82ae2fb19d55070b8e36 (patch)
treefac2b7ee05e22864f1e4df72ad3f0cd80bc0f3a9 /src/mame/drivers/apple2e.cpp
parent54e23ba3ac219ec43b935e1b86151470754e74fd (diff)
srcclean (nw)
Diffstat (limited to 'src/mame/drivers/apple2e.cpp')
-rw-r--r--src/mame/drivers/apple2e.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/drivers/apple2e.cpp b/src/mame/drivers/apple2e.cpp
index a57be196fdb..c40acdb7858 100644
--- a/src/mame/drivers/apple2e.cpp
+++ b/src/mame/drivers/apple2e.cpp
@@ -80,11 +80,11 @@
Like IIc with memory expansion, but with licensed built-in Zip Chip which
runs the 65C02 at 4 MHz turbo speed with a small cache RAM.
- The machine has an internal "Apple 3.5" drive plus a custom chip
- named "MIG" (Multidrive Interface Glue) which helps with the control
- of the drive. This gets around the fact that 1 MHz isn't
- sufficient to handle direct Woz-style control of a double-density
- 3.5" drive.
+ The machine has an internal "Apple 3.5" drive plus a custom chip
+ named "MIG" (Multidrive Interface Glue) which helps with the control
+ of the drive. This gets around the fact that 1 MHz isn't
+ sufficient to handle direct Woz-style control of a double-density
+ 3.5" drive.
External drive port allows IIgs-style daisy-chaining.
@@ -464,7 +464,7 @@ uint8_t apple2e_state::mig_r(uint16_t offset)
if (offset == 0x20)
{
m_migpage += 0x20;
- m_migpage &= 0x7ff; // make sure we wrap
+ m_migpage &= 0x7ff; // make sure we wrap
}
// reset MIG RAM window
@@ -489,7 +489,7 @@ void apple2e_state::mig_w(uint16_t offset, uint8_t data)
if (offset == 0x20)
{
m_migpage += 0x20;
- m_migpage &= 0x7ff; // make sure we wrap
+ m_migpage &= 0x7ff; // make sure we wrap
}
// reset MIG RAM window
@@ -3823,8 +3823,8 @@ static SLOT_INTERFACE_START(apple2_cards)
// SLOT_INTERFACE("magicmusician", A2BUS_MAGICMUSICIAN) /* Magic Musician Card */
SLOT_INTERFACE("pcxport", A2BUS_PCXPORTER) /* Applied Engineering PC Transporter */
SLOT_INTERFACE("ssprite", A2BUS_SSPRITE) /* Synetix SuperSprite Board */
- SLOT_INTERFACE("ssbapple", A2BUS_SSBAPPLE) /* SSB Apple speech board */
- SLOT_INTERFACE("twarp", A2BUS_TRANSWARP) /* AE TransWarp accelerator */
+ SLOT_INTERFACE("ssbapple", A2BUS_SSBAPPLE) /* SSB Apple speech board */
+ SLOT_INTERFACE("twarp", A2BUS_TRANSWARP) /* AE TransWarp accelerator */
SLOT_INTERFACE_END
static SLOT_INTERFACE_START(apple2eaux_cards)