Remove emupal.h from emu.h (nw)

This commit is contained in:
AJR 2018-06-13 14:53:20 -04:00
parent b8ed384272
commit a69902b460
1416 changed files with 1556 additions and 19 deletions

View File

@ -15,6 +15,7 @@
#include "a2bus.h"
#include "video/mc6845.h"
#include "emupal.h"
//**************************************************************************
// TYPE DEFINITIONS

View File

@ -14,6 +14,7 @@
#include "exp.h"
#include "video/mc6845.h"
#include "emupal.h"

View File

@ -13,6 +13,7 @@
#include "graphics.h"
#include "video/upd7220.h"
#include "emupal.h"

View File

@ -13,6 +13,7 @@
#include "exp.h"
#include "video/mc6845.h"
#include "emupal.h"

View File

@ -21,6 +21,7 @@
#include "machine/z80sti.h"
#include "sound/spkrdev.h"
#include "video/mc6845.h"
#include "emupal.h"

View File

@ -13,6 +13,7 @@
#include "pipe.h"
#include "video/mc6845.h"
#include "emupal.h"
//**************************************************************************

View File

@ -25,6 +25,7 @@
#include "isa.h"
#include "cga.h"
#include "video/mc6845.h"
#include "emupal.h"
enum AGA_MODE { AGA_OFF, AGA_COLOR, AGA_MONO };

View File

@ -7,6 +7,7 @@
#include "isa.h"
#include "video/mc6845.h"
#include "emupal.h"
#include "screen.h"

View File

@ -7,6 +7,7 @@
#include "isa.h"
#include "video/crtc_ega.h"
#include "emupal.h"
//**************************************************************************
// TYPE DEFINITIONS

View File

@ -7,6 +7,7 @@
#include "isa.h"
#include "video/mc6845.h"
#include "emupal.h"
//**************************************************************************
// TYPE DEFINITIONS

View File

@ -8,6 +8,7 @@
#include "isa.h"
#include "video/upd7220.h"
#include "machine/bankdev.h"
#include "emupal.h"
//**************************************************************************
// TYPE DEFINITIONS

View File

@ -10,6 +10,7 @@
#include "cpu/i86/i86.h"
#include "machine/timer.h"
#include "isa.h"
#include "emupal.h"
//**************************************************************************
// TYPE DEFINITIONS

View File

@ -13,6 +13,7 @@
#include "nasbus.h"
#include "video/mc6845.h"
#include "emupal.h"
//**************************************************************************

View File

@ -6,6 +6,7 @@
#pragma once
#include "nubus.h"
#include "emupal.h"
//**************************************************************************
// TYPE DEFINITIONS

View File

@ -13,6 +13,7 @@
#include "slot.h"
#include "video/mc6845.h"
#include "emupal.h"
//**************************************************************************

View File

@ -15,6 +15,7 @@
#include "exp.h"
#include "video/mc6845.h"
#include "emupal.h"

View File

@ -13,6 +13,7 @@
#include "wangpc.h"
#include "video/upd7220.h"
#include "emupal.h"

View File

@ -14,6 +14,8 @@
#include "emu.h"
#include "machine/ie15.h"
#include "emupal.h"
#include "ie15.lh"

View File

@ -13,6 +13,7 @@
#pragma once
#include "emupal.h"
#include "screen.h"
#include "vbiparse.h"
#include "avhuff.h"

View File

@ -12,6 +12,7 @@
#pragma once
#include "s3c24xx.h"
#include "emupal.h"
/*******************************************************************************

View File

@ -12,6 +12,7 @@
#pragma once
#include "s3c24xx.h"
#include "emupal.h"
/*******************************************************************************

View File

@ -12,6 +12,7 @@
#pragma once
#include "s3c24xx.h"
#include "emupal.h"
/*******************************************************************************
MACROS / CONSTANTS

View File

@ -78,6 +78,7 @@
#pragma once
#include "emupal.h"
#include "screen.h"

View File

@ -13,6 +13,7 @@
#pragma once
#include "emupal.h"
#include "screen.h"

View File

@ -13,6 +13,7 @@
#pragma once
#include "emupal.h"
#define MCFG_EF9345_PALETTE(_palette_tag) \
downcast<ef9345_device &>(*device).set_palette_tag(_palette_tag);

View File

@ -13,6 +13,8 @@
#pragma once
#include "emupal.h"
#define MCFG_EF9364_PALETTE(_palette_tag) \
downcast<ef9364_device &>(*device).set_palette_tag(_palette_tag);

View File

@ -13,6 +13,8 @@
#pragma once
#include "emupal.h"
#define MCFG_EF936X_PALETTE(palette_tag) \
downcast<ef9365_device &>(*device).set_palette_tag(palette_tag);

View File

@ -15,6 +15,7 @@
#pragma once
#include "emupal.h"
//**************************************************************************

View File

@ -13,6 +13,8 @@
#pragma once
#include "emupal.h"
///*************************************************************************
// INTERFACE CONFIGURATION MACROS

View File

@ -13,6 +13,7 @@
#pragma once
#include "emupal.h"
/***************************************************************************

View File

@ -11,6 +11,7 @@
#pragma once
#include "emupal.h"
#include "screen.h"

View File

@ -5,6 +5,8 @@
#pragma once
#include "emupal.h"
//**************************************************************************
// TYPE DEFINITIONS

View File

@ -12,6 +12,8 @@
#pragma once
#include "emupal.h"
#define PSXGPU_DEBUG_VIEWER ( 0 )

View File

@ -11,6 +11,7 @@
#pragma once
#include "emupal.h"
//**************************************************************************

View File

@ -95,7 +95,6 @@ class address_map; // Forward declaration
// video-related
#include "drawgfx.h"
#include "emupal.h"
#include "tilemap.h"
#include "video.h"

View File

@ -148,9 +148,6 @@ class memory_share;
// declared in emuopts.h
class emu_options;
// declared in emupal.h
class palette_device;
// declared in gamedrv.h
class game_driver;

View File

@ -9,6 +9,7 @@
***************************************************************************/
#include "emu.h"
#include "emupal.h"
//**************************************************************************

View File

@ -92,10 +92,6 @@
#pragma once
#ifndef __EMU_H__
#error Dont include this file directly; include emu.h instead.
#endif
#ifndef MAME_EMU_EMUPAL_H
#define MAME_EMU_EMUPAL_H
@ -289,6 +285,7 @@
// TYPE DEFINITIONS
//**************************************************************************
class palette_device;
typedef device_delegate<void (palette_device &)> palette_init_delegate;

View File

@ -9,6 +9,7 @@
*********************************************************************/
#include "emu.h"
#include "emupal.h"
#include "ui/ui.h"
#include "uiinput.h"
#include "render.h"

View File

@ -47,6 +47,7 @@ Notes:
#include "emu.h"
#include "cpu/m68000/m68000.h"
#include "sound/okim6295.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -28,6 +28,7 @@
#include "machine/eepromser.h"
#include "machine/pxa255.h"
#include "sound/dmadac.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -43,6 +43,7 @@ Notes:
#include "emu.h"
#include "cpu/m68000/m68000.h"
#include "sound/okim6295.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -448,6 +448,7 @@
#include "sound/ay8910.h"
#include "sound/okim6295.h"
#include "video/mc6845.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -16,6 +16,7 @@
#include "machine/watchdog.h"
#include "sound/ym2151.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -17,6 +17,7 @@ TODO:
#include "includes/a2600.h"
#include "emupal.h"
#include "screen.h"
#include "softlist.h"
#include "speaker.h"

View File

@ -31,6 +31,7 @@ ToDo:
#include "sound/wave.h"
#include "video/upd7220.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -14,6 +14,7 @@
#include "emu.h"
#include "cpu/z80/z80.h"
#include "emupal.h"
#include "screen.h"

View File

@ -58,6 +58,7 @@ enter show next address
#include "video/mc6845.h"
#include "imagedev/cassette.h"
#include "sound/wave.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -38,6 +38,7 @@
#include "machine/isbc_215g.h"
#include "machine/keyboard.h"
#include "emupal.h"
#include "screen.h"

View File

@ -104,6 +104,7 @@
#include "machine/mos6530n.h"
#include "video/maria.h"
#include "bus/a7800/a78_carts.h"
#include "emupal.h"
#include "screen.h"
#include "softlist.h"
#include "speaker.h"

View File

@ -25,6 +25,7 @@
#include "bus/econet/econet.h"
#include "bus/centronics/ctronics.h"
#include "bus/rs232/rs232.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -41,6 +41,7 @@ A1 2101 2101
#include "emu.h"
#include "cpu/i8085/i8085.h"
#include "emupal.h"
#include "screen.h"
#include "ace.lh"

View File

@ -14,6 +14,7 @@ Inputs and Dip Switches by Stephh
#include "cpu/z80/z80.h"
#include "machine/nvram.h"
#include "machine/watchdog.h"
#include "emupal.h"
#include "screen.h"
#include "sidewndr.lh"

View File

@ -62,6 +62,7 @@ JALCF1 BIN 1,048,576 02-07-99 1:11a JALCF1.BIN
#include "machine/timer.h"
#include "sound/okim6295.h"
#include "video/ms1_tmap.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -31,6 +31,7 @@
#include "sound/2203intf.h"
#include "sound/3812intf.h"
#include "sound/okim6295.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -164,6 +164,7 @@ Quick Jack administration/service mode:
#include "sound/ay8910.h"
#include "video/hd63484.h"
#include "video/ramdac.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -155,6 +155,7 @@ Stephh's notes (based on the game Z80 code and some tests) :
#include "cpu/z80/z80.h"
#include "machine/timer.h"
#include "sound/ym2151.h"
#include "emupal.h"
#include "speaker.h"

View File

@ -17,6 +17,7 @@ TODO:
#include "machine/nvram.h"
#include "machine/ticket.h"
#include "sound/ay8910.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -41,6 +41,7 @@ PCB:
#include "machine/watchdog.h"
#include "sound/ay8910.h"
#include "video/mc6845.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -179,6 +179,7 @@ Notes:
#include "cpu/rsp/rsp.h"
#include "cpu/mips/mips3.h"
#include "sound/dmadac.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -63,6 +63,7 @@
#include "emu.h"
#include "cpu/sh/sh4.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -17,6 +17,7 @@ Preliminary driver by:
#include "cpu/m6809/konami.h" /* for the callback and the firq irq definition */
#include "machine/watchdog.h"
#include "sound/ym2151.h"
#include "emupal.h"
#include "speaker.h"

View File

@ -17,6 +17,7 @@
#include "machine/nvram.h"
#include "machine/ram.h"
#include "video/hd44780.h"
#include "emupal.h"
#include "rendlay.h"
#include "screen.h"

View File

@ -75,6 +75,7 @@
#include "machine/pit8253.h"
#include "video/tms9927.h"
#include "sound/beep.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"
#include "debugger.h"

View File

@ -41,6 +41,7 @@
#include "sound/beep.h"
#include "sound/wave.h"
#include "video/mc6845.h"
#include "emupal.h"
#include "screen.h"
#include "softlist.h"
#include "speaker.h"

View File

@ -8,6 +8,7 @@
#include "emu.h"
#include "cpu/alto2/alto2cpu.h"
#include "machine/diablo_hd.h"
#include "emupal.h"
#include "screen.h"
#include "rendlay.h"
#include "speaker.h"

View File

@ -416,6 +416,7 @@
#include "sound/3812intf.h"
#include "video/mc6845.h"
//#include "sound/dac.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -48,6 +48,7 @@
#include "machine/74259.h"
#include "machine/watchdog.h"
#include "sound/ay8910.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -80,6 +80,7 @@
#include "machine/ticket.h"
#include "sound/sn76496.h"
#include "video/mc6845.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -90,6 +90,7 @@ ToDo:
#include "machine/upd765.h"
#include "sound/beep.h"
#include "video/mc6845.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -23,6 +23,7 @@ Sanma - 3nin-uchi Mahjong is another ANES game confirmed running on the same har
*/
#include "emu.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"
#include "cpu/z80/z80.h"

View File

@ -131,6 +131,7 @@ Dumped by Chackn
#include "machine/segacrp2_device.h"
#include "sound/2203intf.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -350,6 +350,7 @@ Components:
#include "machine/6850acia.h"
#include "machine/i8214.h"
#include "machine/mc6854.h"
#include "emupal.h"
#include "screen.h"

View File

@ -62,6 +62,7 @@
#include "machine/upd765.h"
#include "sound/upd1771.h"
#include "video/upd7220.h"
#include "emupal.h"
#include "screen.h"
#include "softlist.h"
#include "speaker.h"

View File

@ -80,6 +80,7 @@
#include "bus/a1bus/a1cassette.h"
#include "bus/a1bus/a1cffa.h"
#include "emupal.h"
#include "screen.h"
#include "softlist.h"

View File

@ -49,6 +49,7 @@
#include "sound/wave.h"
#include "video/mc6845.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -30,6 +30,7 @@
#include "machine/z80sio.h"
#include "sound/sn76496.h"
#include "video/mc6845.h"
#include "emupal.h"
#include "screen.h"
#include "softlist.h"
#include "speaker.h"

View File

@ -35,6 +35,7 @@
#include "machine/wd_fdc.h"
#include "machine/z80ctc.h"
#include "machine/z80sio.h"
#include "emupal.h"
#include "screen.h"

View File

@ -38,6 +38,7 @@
#include "machine/z80sio.h"
#include "sound/sn76496.h"
#include "video/mc6845.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"
#include "apricotp.lh"

View File

@ -328,6 +328,7 @@
#include "machine/mc146818.h" // DALLAS1287 is functionally compatible.
#include "machine/nvram.h"
#include "machine/timer.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -29,6 +29,7 @@ notes:
#include "cpu/sh/sh4.h"
#include "machine/ins8250.h"
#include "machine/eepromser.h"
#include "emupal.h"
#include "screen.h"
class aristmk6_state : public driver_device

View File

@ -80,6 +80,7 @@ Coin B is not used
#include "cpu/z80/z80.h"
#include "cpu/m68000/m68000.h"
#include "sound/2203intf.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -21,6 +21,7 @@ TODO:
#include "machine/eepromser.h"
#include "sound/ym2151.h"
#include "sound/k053260.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -22,6 +22,7 @@ DIP locations verified for:
#include "cpu/z80/z80.h"
#include "machine/i8255.h"
#include "sound/samples.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -43,6 +43,7 @@ To do:
#include "machine/ticket.h"
#include "machine/timer.h"
#include "sound/okim6295.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -96,6 +96,7 @@ Mass storage: Floppy: 5.25" 1.2Mb, HDD: 40Mb
#include "machine/ram.h"
#include "machine/vt82c496.h"
#include "machine/wd7600.h"
#include "emupal.h"
#include "softlist_dev.h"
#include "speaker.h"

View File

@ -20,6 +20,7 @@
#include "cpu/m68000/m68000.h"
#include "cpu/tms32010/tms32010.h"
#include "video/poly.h"
#include "emupal.h"
#include "screen.h"

View File

@ -56,6 +56,7 @@
#include "sound/pokey.h"
#include "machine/eeprompar.h"
#include "machine/watchdog.h"
#include "emupal.h"
#include "speaker.h"

View File

@ -53,6 +53,7 @@
#include "video/zeus2.h"
#include "machine/timekpr.h"
#include "coreutil.h"
#include "emupal.h"
// Reset bits
#define RESET_IOASIC 0x01

View File

@ -16,6 +16,7 @@
#include "emu.h"
#include "cpu/z180/z180.h"
#include "emupal.h"
#include "screen.h"

View File

@ -26,6 +26,7 @@
#include "bus/rs232/rs232.h"
#include "machine/keyboard.h"
#include "emupal.h"
#include "screen.h"

View File

@ -82,6 +82,7 @@
#include "cpu/i86/i86.h"
#include "sound/ay8910.h"
#include "video/tms9927.h"
#include "emupal.h"
#include "screen.h"
#include "softlist.h"
#include "speaker.h"

View File

@ -103,6 +103,7 @@ TODO:
#include "emu.h"
#include "cpu/sh/sh4.h"
#include "debugger.h"
#include "emupal.h"
#include "screen.h"

View File

@ -424,6 +424,7 @@
#include "video/mc6845.h"
#include "machine/z80ctc.h"
#include "machine/z80pio.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -19,6 +19,7 @@
#include "emu.h"
#include "bus/isa/fdc.h"
#include "cpu/i86/i86.h"
#include "emupal.h"
#include "screen.h"
class ax20_state : public driver_device

View File

@ -17,6 +17,7 @@
#include "cpu/i86/i86.h"
#include "machine/am9517a.h"
#include "video/mc6845.h"
#include "emupal.h"
#include "screen.h"

View File

@ -23,6 +23,7 @@
#include "cpu/arm/arm.h"
#include "video/deco16ic.h"
#include "video/decospr.h"
#include "emupal.h"
#include "rendlay.h"
#include "screen.h"
#include "speaker.h"

View File

@ -19,6 +19,7 @@
#include "cpu/mcs51/mcs51.h"
#include "cpu/m6800/m6801.h"
#include "video/mc6845.h"
#include "emupal.h"
#include "screen.h"
class banctec_state : public driver_device

View File

@ -202,6 +202,7 @@ foreground and not behind the moving elevator layer.
#include "machine/nvram.h"
#include "sound/2608intf.h"
#include "sound/2610intf.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

View File

@ -53,6 +53,7 @@
#include "machine/z80daisy.h"
#include "machine/z80ctc.h"
#include "imagedev/cassette.h"
#include "emupal.h"
#include "screen.h"
#include "speaker.h"

Some files were not shown because too many files have changed in this diff Show More