diff options
author | 2008-04-24 06:15:00 +0000 | |
---|---|---|
committer | 2008-04-24 06:15:00 +0000 | |
commit | 6a955fc076b56752bd5922df082bc05a98ca1bac (patch) | |
tree | 7f02ad03fbba115a5076589c110c745f264a40f5 /src/emu/cpu/m6800/m6800.c | |
parent | 737ff539301408ff336f32fbb653ede921d595ac (diff) |
From: Atari Ace [mailto:atari_ace@verizon.net]
Subject: [patch] Remove more Machine globals, #include "deprecat.h"
Hi mamedev,
The attached patch goes through and converts a number of Machine
globals to machine locals, and then removes #include "deprecat.h" if
appropriate. The script that generated it is included, since the
patch itself is rather large and would have been time consuming to
produce otherwise.
The script doesn't convert cases of Machine that aren't in common
macros. I'll try to tackle those later if someone doesn't beat me to
it.
~aa
Diffstat (limited to 'src/emu/cpu/m6800/m6800.c')
-rw-r--r-- | src/emu/cpu/m6800/m6800.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/emu/cpu/m6800/m6800.c b/src/emu/cpu/m6800/m6800.c index 483b1599d70..f6368db6516 100644 --- a/src/emu/cpu/m6800/m6800.c +++ b/src/emu/cpu/m6800/m6800.c @@ -74,7 +74,6 @@ TODO: */ #include "debugger.h" -#include "deprecat.h" #include "m6800.h" #define VERBOSE 0 @@ -1965,12 +1964,12 @@ static WRITE8_HANDLER( m6803_internal_registers_w ); READ8_HANDLER( hd63701_internal_registers_r ) { - return m6803_internal_registers_r(Machine, offset); + return m6803_internal_registers_r(machine, offset); } WRITE8_HANDLER( hd63701_internal_registers_w ) { - m6803_internal_registers_w(Machine, offset,data); + m6803_internal_registers_w(machine, offset,data); } #endif |