mirror of
https://github.com/holub/mame
synced 2025-04-24 09:20:02 +03:00
Put #include emu.h as the first preprocessor directive in various files to support precompiled headers in visual studio (nw)
This commit is contained in:
parent
95c50fed36
commit
4e0a7632f4
@ -12,8 +12,9 @@
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
#include "emu.h"
|
||||
|
||||
#define DAC_GENERATOR_EPILOG(_dac_type, _dac_class, _dac_description, _dac_shortname) \
|
||||
DEFINE_DEVICE_TYPE(_dac_type, _dac_class, _dac_shortname, _dac_description)
|
||||
|
||||
#include "emu.h"
|
||||
#include "dac.h"
|
||||
|
@ -11,6 +11,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "emu.h"
|
||||
#include "video/cgapal.h"
|
||||
|
||||
const unsigned char cga_palette[16 * CGA_PALETTE_SETS][3] =
|
||||
|
@ -8,9 +8,7 @@
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
#include "emucore.h"
|
||||
#include "eminline.h"
|
||||
#include "attotime.h"
|
||||
#include "emu.h"
|
||||
|
||||
|
||||
//**************************************************************************
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
#include "corealloc.h"
|
||||
#include "emu.h"
|
||||
#include "textbuf.h"
|
||||
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
#include "emucore.h"
|
||||
#include "emu.h"
|
||||
|
||||
|
||||
//**************************************************************************
|
||||
|
@ -8,9 +8,11 @@
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
#include "emu.h"
|
||||
|
||||
|
||||
#if !(defined(__ALTIVEC__) || ((!defined(MAME_DEBUG) || defined(__OPTIMIZE__)) && (defined(__SSE2__) || defined(_MSC_VER)) && defined(PTR64)))
|
||||
|
||||
#include "emu.h"
|
||||
#include "rgbgen.h"
|
||||
|
||||
/***************************************************************************
|
||||
|
@ -10,9 +10,10 @@
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
#include "emu.h"
|
||||
|
||||
#if (!defined(MAME_DEBUG) || defined(__OPTIMIZE__)) && (defined(__SSE2__) || defined(_MSC_VER)) && defined(PTR64)
|
||||
|
||||
#include "emu.h"
|
||||
#include <emmintrin.h>
|
||||
#include "rgbsse.h"
|
||||
|
||||
|
@ -8,9 +8,10 @@
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
#include "emu.h"
|
||||
|
||||
#if defined(__ALTIVEC__)
|
||||
|
||||
#include "emu.h"
|
||||
#include "rgbutil.h"
|
||||
|
||||
/***************************************************************************
|
||||
|
Loading…
Reference in New Issue
Block a user