summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/memory.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-07-10 03:10:17 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-07-10 03:10:17 +0000
commit62c9a9d8cb303b9ce63926072eaab55eec405f4c (patch)
treec19c72b6c8af5206d957d06400c920854d85d367 /src/emu/memory.c
parent1f747224c00e292f9ac0bbe7bf84a4fa4f44fd57 (diff)
Cleanups and version bump.mame0132u4
Diffstat (limited to 'src/emu/memory.c')
-rw-r--r--src/emu/memory.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/memory.c b/src/emu/memory.c
index f2b224cdde4..03f0053476b 100644
--- a/src/emu/memory.c
+++ b/src/emu/memory.c
@@ -879,8 +879,8 @@ direct_update_func memory_set_direct_update_handler(const address_space *space,
/*-------------------------------------------------
- memory_set_direct_region - called by deivce
- cores to update the opcode base for the given
+ memory_set_direct_region - called by deivce
+ cores to update the opcode base for the given
address
-------------------------------------------------*/
@@ -1145,7 +1145,7 @@ void memory_set_bankptr(running_machine *machine, int banknum, void *base)
/*-------------------------------------------------
- memory_find_unused_bank - return the index of
+ memory_find_unused_bank - return the index of
an unused bank
-------------------------------------------------*/
@@ -1157,7 +1157,7 @@ int memory_find_unused_bank(running_machine *machine)
for (banknum = STATIC_BANK1; banknum <= MAX_EXPLICIT_BANKS; banknum++)
if (!memdata->bankdata[banknum].used)
return banknum;
-
+
return -1;
}
@@ -2286,7 +2286,7 @@ static void space_map_range(address_space *space, read_or_write readorwrite, int
/*-------------------------------------------------
space_find_backing_memory - return a pointer to
- the base of RAM associated with the given
+ the base of RAM associated with the given
device and offset
-------------------------------------------------*/