From 4498faacd93cbb7f204d1b47e5d12bd417cf43b3 Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Sun, 10 Jan 2010 00:29:26 +0000 Subject: First round of an attempted cleanup of header files in the system. - Created new central header "emu.h"; this should be included by pretty much any driver or device as the first include. This file in turn includes pretty much everything a driver or device will need, minus any other devices it references. Note that emu.h should *never* be included by another header file. - Updated all files in the core (src/emu) to use emu.h. - Removed a ton of redundant and poorly-tracked header includes from within other header files. - Temporarily changed driver.h to map to emu.h until we update files outside of the core. Added class wrapper around tagmap so it can be directly included and accessed within objects that need it. Updated all users to embed tagmap objects and changed them to call through the class. Added nicer functions for finding devices, ports, and regions in a machine: machine->device("tag") -- return the named device, or NULL machine->port("tag") -- return the named port, or NULL machine->region("tag"[, &length[, &flags]]) -- return the named region and optionally its length and flags Made the device tag an astring. This required touching a lot of code that printed the device to explicitly fetch the C-string from it. (Thank you gcc for flagging that issue!) --- src/emu/machine/6850acia.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/emu/machine/6850acia.h') diff --git a/src/emu/machine/6850acia.h b/src/emu/machine/6850acia.h index f0034a0f917..a0d535410b2 100644 --- a/src/emu/machine/6850acia.h +++ b/src/emu/machine/6850acia.h @@ -9,7 +9,6 @@ #ifndef __ACIA6850_H__ #define __ACIA6850_H__ -#include "devcb.h" /*************************************************************************** MACROS -- cgit v1.2.3-70-g09d2