summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/omegrace.c
diff options
context:
space:
mode:
author Phil Bennett <philipjbennett@users.noreply.github.com>2010-08-13 08:54:21 +0000
committer Phil Bennett <philipjbennett@users.noreply.github.com>2010-08-13 08:54:21 +0000
commite4e7afe98c47e2e4a1886b6a18164414c57b06e5 (patch)
treeaeaa0a7df2a2c0ddd27f5c2e1692c798d2c4cd6a /src/mame/drivers/omegrace.c
parent8b8dfe62d6ea0a0795ffba8690d6db362b4e32eb (diff)
Removed several exported non-const global variables from the core [Atari Ace]
---------- Forwarded message ---------- From: Atari Ace <atari_ace@frontier.com> Date: Sat, Aug 7, 2010 at 9:38 PM Subject: [patch] Eliminate more exported non-const globals from MAME core To: submit@mamedev.org Cc: atariace@hotmail.com - Hide quoted text - Hi mamedev, This patch eliminates a few more non-const global vars coming out of the MAME core. Vectorram/vectorram_size from vector.h in fact is unused by the core, it's really for avgdvg support, and is also confusingly used by segag80, so most of the patch is disentangling those uses. ~aa
Diffstat (limited to 'src/mame/drivers/omegrace.c')
-rw-r--r--src/mame/drivers/omegrace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/omegrace.c b/src/mame/drivers/omegrace.c
index 694d69e1efb..252363cde4f 100644
--- a/src/mame/drivers/omegrace.c
+++ b/src/mame/drivers/omegrace.c
@@ -329,7 +329,7 @@ static ADDRESS_MAP_START( main_map, ADDRESS_SPACE_PROGRAM, 8 )
AM_RANGE(0x0000, 0x3fff) AM_ROM
AM_RANGE(0x4000, 0x4bff) AM_RAM
AM_RANGE(0x5c00, 0x5cff) AM_RAM AM_BASE_SIZE_GENERIC(nvram) /* NVRAM */
- AM_RANGE(0x8000, 0x8fff) AM_RAM AM_BASE(&vectorram) AM_SIZE(&vectorram_size) AM_REGION("maincpu", 0x8000) /* vector ram */
+ AM_RANGE(0x8000, 0x8fff) AM_RAM AM_BASE(&avgdvg_vectorram) AM_SIZE(&avgdvg_vectorram_size) AM_REGION("maincpu", 0x8000) /* vector ram */
AM_RANGE(0x9000, 0x9fff) AM_ROM /* vector rom */
ADDRESS_MAP_END