summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/atari_s2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/atari_s2.c')
-rw-r--r--src/mame/drivers/atari_s2.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/atari_s2.c b/src/mame/drivers/atari_s2.c
index 201fa0906cb..dd31eb4b9d7 100644
--- a/src/mame/drivers/atari_s2.c
+++ b/src/mame/drivers/atari_s2.c
@@ -1,5 +1,5 @@
/*
- Atari Generation/System 2
+ Atari Generation/System 2
*/
#include "emu.h"
#include "cpu/m6800/m6800.h"
@@ -17,11 +17,11 @@ public:
static ADDRESS_MAP_START( atari_s2_map, ADDRESS_SPACE_PROGRAM, 8 )
ADDRESS_MAP_UNMAP_HIGH
ADDRESS_MAP_GLOBAL_MASK(0x3fff)
- AM_RANGE(0x0000, 0x00ff) AM_MIRROR(0x0700) AM_RAM
+ AM_RANGE(0x0000, 0x00ff) AM_MIRROR(0x0700) AM_RAM
AM_RANGE(0x0800, 0x08ff) AM_MIRROR(0x0700) AM_RAM // NVRAM
- AM_RANGE(0x2800, 0x3fff) AM_ROM
+ AM_RANGE(0x2800, 0x3fff) AM_ROM
ADDRESS_MAP_END
-
+
static INPUT_PORTS_START( atari_s2 )
INPUT_PORTS_END
@@ -37,9 +37,9 @@ static MACHINE_CONFIG_START( atari_s2, atari_s2_state )
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", M6800, 1000000)
MCFG_CPU_PROGRAM_MAP(atari_s2_map)
-
+
MCFG_MACHINE_RESET( atari_s2 )
-
+
/* video hardware */
MCFG_DEFAULT_LAYOUT(layout_pinball)
MACHINE_CONFIG_END