mirror of
https://github.com/holub/mame
synced 2025-07-04 17:38:08 +03:00
Bulk replace convention for include guards in src/mame/includes/ files:
MAME_INCLUDES_<FILENAME>_H is now the standardized way for a MAME include header, starting with a double underscore is reserved by the C++ standard go figure (nw)
This commit is contained in:
parent
3630bb07a7
commit
1883556218
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef _3DO_H_
|
||||
#define _3DO_H_
|
||||
#ifndef MAME_INCLUDES_3DO_H
|
||||
#define MAME_INCLUDES_3DO_H
|
||||
|
||||
#include "machine/nvram.h"
|
||||
#include "machine/timer.h"
|
||||
|
@ -8,8 +8,8 @@
|
||||
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef MAME_INCLUDES_A2600H
|
||||
#define MAME_INCLUDES_A2600H
|
||||
#ifndef MAME_INCLUDES_A2600_H
|
||||
#define MAME_INCLUDES_A2600_H
|
||||
|
||||
#pragma once
|
||||
|
||||
|
@ -2,8 +2,8 @@
|
||||
// copyright-holders:Curt Coder
|
||||
#pragma once
|
||||
|
||||
#ifndef __ABC1600__
|
||||
#define __ABC1600__
|
||||
#ifndef MAME_INCLUDES_ABC1600_H
|
||||
#define MAME_INCLUDES_ABC1600_H
|
||||
|
||||
#include "bus/abcbus/abcbus.h"
|
||||
#include "bus/rs232/rs232.h"
|
||||
|
@ -2,8 +2,8 @@
|
||||
// copyright-holders:Curt Coder
|
||||
#pragma once
|
||||
|
||||
#ifndef __ABC800__
|
||||
#define __ABC800__
|
||||
#ifndef MAME_INCLUDES_ABC800_H
|
||||
#define MAME_INCLUDES_ABC800_H
|
||||
|
||||
#include "bus/abcbus/abcbus.h"
|
||||
#include "bus/rs232/rs232.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef AC1_H_
|
||||
#define AC1_H_
|
||||
#ifndef MAME_INCLUDES_AC1_H
|
||||
#define MAME_INCLUDES_AC1_H
|
||||
|
||||
#include "machine/z80pio.h"
|
||||
#include "imagedev/cassette.h"
|
||||
|
@ -2,8 +2,8 @@
|
||||
// copyright-holders:Curt Coder
|
||||
#pragma once
|
||||
|
||||
#ifndef ADAM_H_
|
||||
#define ADAM_H_
|
||||
#ifndef MAME_INCLUDES_ADAM_H
|
||||
#define MAME_INCLUDES_ADAM_H
|
||||
|
||||
#include "bus/adam/exp.h"
|
||||
#include "bus/adamnet/adamnet.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef __ADVISION__
|
||||
#define __ADVISION__
|
||||
#ifndef MAME_INCLUDES_ADVISION_H
|
||||
#define MAME_INCLUDES_ADVISION_H
|
||||
|
||||
#include "sound/dac.h"
|
||||
#include "bus/generic/slot.h"
|
||||
|
@ -8,8 +8,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef AIM65_H_
|
||||
#define AIM65_H_
|
||||
#ifndef MAME_INCLUDES_AIM65_H
|
||||
#define MAME_INCLUDES_AIM65_H
|
||||
|
||||
#include "cpu/m6502/m6502.h"
|
||||
#include "video/dl1416.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef AMSTRAD_H_
|
||||
#define AMSTRAD_H_
|
||||
#ifndef MAME_INCLUDES_AMSTRAD_H
|
||||
#define MAME_INCLUDES_AMSTRAD_H
|
||||
|
||||
#include "cpu/z80/z80.h"
|
||||
#include "sound/ay8910.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
#ifndef APPLE2E_H_
|
||||
#define APPLE2E_H_
|
||||
#ifndef MAME_INCLUDES_APPLE2E_H
|
||||
#define MAME_INCLUDES_APPLE2E_H
|
||||
|
||||
INPUT_PORTS_EXTERN( apple2ep );
|
||||
|
||||
|
@ -8,8 +8,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef APPLE2GS_H_
|
||||
#define APPLE2GS_H_
|
||||
#ifndef MAME_INCLUDES_APPLE2GS_H
|
||||
#define MAME_INCLUDES_APPLE2GS_H
|
||||
|
||||
#define RUN_ADB_MICRO (0)
|
||||
|
||||
|
@ -8,8 +8,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef APPLE3_H_
|
||||
#define APPLE3_H_
|
||||
#ifndef MAME_INCLUDES_APPLE3_H
|
||||
#define MAME_INCLUDES_APPLE3_H
|
||||
|
||||
#include "cpu/m6502/m6502.h"
|
||||
#include "includes/apple2.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
#ifndef _ARCHIMEDES_H_
|
||||
#define _ARCHIMEDES_H_
|
||||
#ifndef MAME_INCLUDES_ARCHIMEDES_H
|
||||
#define MAME_INCLUDES_ARCHIMEDES_H
|
||||
|
||||
#include "machine/aakart.h"
|
||||
#include "sound/dac.h"
|
||||
|
@ -5,6 +5,7 @@
|
||||
Asuka & Asuka (+ Taito/Visco games on similar hardware)
|
||||
|
||||
*************************************************************************/
|
||||
|
||||
#ifndef MAME_INCLUDES_ASUKA_H
|
||||
#define MAME_INCLUDES_ASUKA_H
|
||||
|
||||
|
@ -11,8 +11,8 @@
|
||||
|
||||
******************************************************************************/
|
||||
|
||||
#ifndef ATARI_H
|
||||
#define ATARI_H
|
||||
#ifndef MAME_INCLUDES_ATARI_H
|
||||
#define MAME_INCLUDES_ATARI_H
|
||||
|
||||
#include "machine/6821pia.h"
|
||||
#include "sound/pokey.h"
|
||||
|
@ -8,8 +8,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef BEBOX_H_
|
||||
#define BEBOX_H_
|
||||
#ifndef MAME_INCLUDES_BEBOX_H
|
||||
#define MAME_INCLUDES_BEBOX_H
|
||||
|
||||
#include "machine/53c810.h"
|
||||
#include "machine/am9517a.h"
|
||||
|
@ -6,8 +6,9 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef BK_H_
|
||||
#define BK_H_
|
||||
#ifndef MAME_INCLUDES_BK_H
|
||||
#define MAME_INCLUDES_BK_H
|
||||
|
||||
#include "imagedev/cassette.h"
|
||||
|
||||
class bk_state : public driver_device
|
||||
|
@ -1,7 +1,8 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Curt Coder
|
||||
#ifndef __BW12__
|
||||
#define __BW12__
|
||||
|
||||
#ifndef MAME_INCLUDES_BW12_H
|
||||
#define MAME_INCLUDES_BW12_H
|
||||
|
||||
#include "cpu/z80/z80.h"
|
||||
#include "machine/ram.h"
|
||||
|
@ -1,8 +1,8 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Brad Oliver, Bernd Wiebelt, Allard van der Bas
|
||||
|
||||
#ifndef BWIDOW_H_
|
||||
#define BWIDOW_H_
|
||||
#ifndef MAME_INCLUDES_BWIDOW_H
|
||||
#define MAME_INCLUDES_BWIDOW_H
|
||||
|
||||
#define MASTER_CLOCK (XTAL(12'096'000))
|
||||
#define CLOCK_3KHZ (MASTER_CLOCK / 4096)
|
||||
|
@ -1,8 +1,8 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Curt Coder
|
||||
#ifndef __C80__
|
||||
#define __C80__
|
||||
|
||||
#ifndef MAME_INCLUDES_C80_H
|
||||
#define MAME_INCLUDES_C80_H
|
||||
|
||||
#include "cpu/z80/z80.h"
|
||||
#include "cpu/z80/z80daisy.h"
|
||||
|
@ -1,7 +1,8 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ryan Holtz
|
||||
#ifndef _INCLUDES_CDI_H_
|
||||
#define _INCLUDES_CDI_H_
|
||||
|
||||
#ifndef MAME_INCLUDES_CDI_H
|
||||
#define MAME_INCLUDES_CDI_H
|
||||
|
||||
#include "machine/cdi070.h"
|
||||
#include "machine/cdislave.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef CHANNELF_H_
|
||||
#define CHANNELF_H_
|
||||
#ifndef MAME_INCLUDES_CHANNELF_H
|
||||
#define MAME_INCLUDES_CHANNELF_H
|
||||
|
||||
#include "cpu/f8/f8.h"
|
||||
#include "audio/channelf.h"
|
||||
|
@ -2,8 +2,8 @@
|
||||
// copyright-holders:Mike Balfour, Ben Bruscella, Sean Young
|
||||
#pragma once
|
||||
|
||||
#ifndef __COLECO__
|
||||
#define __COLECO__
|
||||
#ifndef MAME_INCLUDES_COLECO_H
|
||||
#define MAME_INCLUDES_COLECO_H
|
||||
|
||||
|
||||
#include "cpu/z80/z80.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef COMQUEST_H_
|
||||
#define COMQUEST_H_
|
||||
#ifndef MAME_INCLUDES_COMQUEST_H
|
||||
#define MAME_INCLUDES_COMQUEST_H
|
||||
|
||||
|
||||
class comquest_state : public driver_device
|
||||
|
@ -2,8 +2,8 @@
|
||||
// copyright-holders:Curt Coder
|
||||
#pragma once
|
||||
|
||||
#ifndef __COMX35__
|
||||
#define __COMX35__
|
||||
#ifndef MAME_INCLUDES_COMX35_H
|
||||
#define MAME_INCLUDES_COMX35_H
|
||||
|
||||
#include "bus/comx35/exp.h"
|
||||
#include "cpu/cosmac/cosmac.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
#ifndef _CPS1_H_
|
||||
#define _CPS1_H_
|
||||
#ifndef MAME_INCLUDES_CPS1_H
|
||||
#define MAME_INCLUDES_CPS1_H
|
||||
|
||||
#include "sound/msm5205.h"
|
||||
#include "sound/qsound.h"
|
||||
|
@ -1,9 +1,8 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Wilbert Pol, Curt Coder
|
||||
|
||||
#ifndef __CRVISION__
|
||||
#define __CRVISION__
|
||||
|
||||
#ifndef MAME_INCLUDES_CRVISION_H
|
||||
#define MAME_INCLUDES_CRVISION_H
|
||||
|
||||
#include "cpu/m6502/m6502.h"
|
||||
#include "imagedev/cassette.h"
|
||||
|
@ -1,7 +1,8 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Lukasz Markowski
|
||||
#ifndef CXHUMAX_H_
|
||||
#define CXHUMAX_H_
|
||||
|
||||
#ifndef MAME_INCLUDES_CXHUMAX_H
|
||||
#define MAME_INCLUDES_CXHUMAX_H
|
||||
|
||||
#include "cpu/arm7/arm7.h"
|
||||
#include "cpu/arm7/arm7core.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef DAI_H_
|
||||
#define DAI_H_
|
||||
#ifndef MAME_INCLUDES_DAI_H
|
||||
#define MAME_INCLUDES_DAI_H
|
||||
|
||||
#include "cpu/i8085/i8085.h"
|
||||
#include "audio/dai_snd.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef DGN_BETA_H_
|
||||
#define DGN_BETA_H_
|
||||
#ifndef MAME_INCLUDES_DGN_BETA_H
|
||||
#define MAME_INCLUDES_DGN_BETA_H
|
||||
|
||||
#include "video/mc6845.h"
|
||||
#include "machine/wd_fdc.h"
|
||||
|
@ -10,8 +10,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef ELECTRON_H_
|
||||
#define ELECTRON_H_
|
||||
#ifndef MAME_INCLUDES_ELECTRON_H
|
||||
#define MAME_INCLUDES_ELECTRON_H
|
||||
|
||||
#include "machine/ram.h"
|
||||
#include "imagedev/cassette.h"
|
||||
|
@ -2,8 +2,8 @@
|
||||
// copyright-holders:Curt Coder
|
||||
#pragma once
|
||||
|
||||
#ifndef __INCLUDES_ELF__
|
||||
#define __INCLUDES_ELF__
|
||||
#ifndef MAME_INCLUDES_ELF_H
|
||||
#define MAME_INCLUDES_ELF_H
|
||||
|
||||
|
||||
#include "cpu/cosmac/cosmac.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
|
||||
*************************************************************************/
|
||||
|
||||
#ifndef _ESRIPSYS_H_
|
||||
#define _ESRIPSYS_H_
|
||||
#ifndef MAME_INCLUDES_ESRIPSYS_H
|
||||
#define MAME_INCLUDES_ESRIPSYS_H
|
||||
|
||||
#pragma once
|
||||
|
||||
|
@ -2,8 +2,8 @@
|
||||
// copyright-holders:Curt Coder
|
||||
#pragma once
|
||||
|
||||
#ifndef __ETI660__
|
||||
#define __ETI660__
|
||||
#ifndef MAME_INCLUDES_ETI660_H
|
||||
#define MAME_INCLUDES_ETI660_H
|
||||
|
||||
#include "cpu/cosmac/cosmac.h"
|
||||
#include "imagedev/cassette.h"
|
||||
|
@ -9,8 +9,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef DRIVERS_FIDELBASE_H
|
||||
#define DRIVERS_FIDELBASE_H
|
||||
#ifndef MAME_INCLUDES_FIDELBASE_H
|
||||
#define MAME_INCLUDES_FIDELBASE_H
|
||||
|
||||
#include "machine/timer.h"
|
||||
#include "sound/dac.h"
|
||||
|
@ -12,8 +12,8 @@
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
#ifndef __GALAXOLD_H__
|
||||
#define __GALAXOLD_H__
|
||||
#ifndef MAME_INCLUDES_GALAXOLD_H
|
||||
#define MAME_INCLUDES_GALAXOLD_H
|
||||
|
||||
#include "machine/7474.h"
|
||||
#include "machine/timer.h"
|
||||
|
@ -5,9 +5,9 @@
|
||||
* includes/galaxy.h
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef GALAXY_H_
|
||||
#define GALAXY_H_
|
||||
|
||||
#ifndef MAME_INCLUDES_GALAXY_H
|
||||
#define MAME_INCLUDES_GALAXY_H
|
||||
|
||||
#include "imagedev/snapquik.h"
|
||||
#include "imagedev/cassette.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef GALEB_H_
|
||||
#define GALEB_H_
|
||||
#ifndef MAME_INCLUDES_GALEB_H
|
||||
#define MAME_INCLUDES_GALEB_H
|
||||
|
||||
#include "sound/dac.h"
|
||||
|
||||
|
@ -10,8 +10,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef GAMECOM_H_
|
||||
#define GAMECOM_H_
|
||||
#ifndef MAME_INCLUDES_GAMECOM_H
|
||||
#define MAME_INCLUDES_GAMECOM_H
|
||||
|
||||
#include "cpu/sm8500/sm8500.h"
|
||||
#include "sound/dac.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef GB_H_
|
||||
#define GB_H_
|
||||
#ifndef MAME_INCLUDES_GB_H
|
||||
#define MAME_INCLUDES_GB_H
|
||||
|
||||
#include "sound/gb.h"
|
||||
#include "cpu/lr35902/lr35902.h"
|
||||
|
@ -1,7 +1,8 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:R. Belmont,Ryan Holtz
|
||||
#ifndef _GBA_H_
|
||||
#define _GBA_H_
|
||||
|
||||
#ifndef MAME_INCLUDES_GBA_H
|
||||
#define MAME_INCLUDES_GBA_H
|
||||
|
||||
#include "sound/gb.h"
|
||||
#include "machine/intelfsh.h"
|
||||
|
@ -1,7 +1,8 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Tim Schuerewegen
|
||||
#ifndef _GP32_H_
|
||||
#define _GP32_H_
|
||||
|
||||
#ifndef MAME_INCLUDES_GP32_H
|
||||
#define MAME_INCLUDES_GP32_H
|
||||
|
||||
#include "machine/smartmed.h"
|
||||
#include "sound/dac.h"
|
||||
|
@ -1,8 +1,8 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Farfetch'd, David Haywood
|
||||
|
||||
#ifndef __GSTRIKER_H
|
||||
#define __GSTRIKER_H
|
||||
#ifndef MAME_INCLUDES_GSTRIKER_H
|
||||
#define MAME_INCLUDES_GSTRIKER_H
|
||||
|
||||
#include "machine/6850acia.h"
|
||||
#include "machine/gen_latch.h"
|
||||
|
@ -3,8 +3,9 @@
|
||||
// *******************************
|
||||
// Driver for HP 9845B/C/T systems
|
||||
// *******************************
|
||||
#ifndef _HP9845_H_
|
||||
#define _HP9845_H_
|
||||
|
||||
#ifndef MAME_INCLUDES_HP9845_H
|
||||
#define MAME_INCLUDES_HP9845_H
|
||||
|
||||
#include "cpu/hphybrid/hphybrid.h"
|
||||
#include "machine/hp_taco.h"
|
||||
|
@ -1,7 +1,8 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Curt Coder
|
||||
#ifndef __HUEBLER__
|
||||
#define __HUEBLER__
|
||||
|
||||
#ifndef MAME_INCLUDES_HUEBLER_H
|
||||
#define MAME_INCLUDES_HUEBLER_H
|
||||
|
||||
#define SCREEN_TAG "screen"
|
||||
#define Z80_TAG "z80"
|
||||
|
@ -2,8 +2,8 @@
|
||||
// copyright-holders:F. Ulivi
|
||||
// Driver for Intel Intellec MDS series-II
|
||||
|
||||
#ifndef _IMDS2_H_
|
||||
#define _IMDS2_H_
|
||||
#ifndef MAME_INCLUDES_IMDS2_H
|
||||
#define MAME_INCLUDES_IMDS2_H
|
||||
|
||||
#include "cpu/i8085/i8085.h"
|
||||
#include "cpu/mcs48/mcs48.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
#ifndef __KANEKO16_H__
|
||||
#define __KANEKO16_H__
|
||||
#ifndef MAME_INCLUDES_KANEKO16_H
|
||||
#define MAME_INCLUDES_KANEKO16_H
|
||||
|
||||
#include "machine/gen_latch.h"
|
||||
#include "machine/nvram.h"
|
||||
|
@ -8,8 +8,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef __KIM1__
|
||||
#define __KIM1__
|
||||
#ifndef MAME_INCLUDES_KIM1_H
|
||||
#define MAME_INCLUDES_KIM1_H
|
||||
|
||||
#include "softlist.h"
|
||||
#include "cpu/m6502/m6502.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef KRAMERMC_H_
|
||||
#define KRAMERMC_H_
|
||||
#ifndef MAME_INCLUDES_KRAMERMC_H
|
||||
#define MAME_INCLUDES_KRAMERMC_H
|
||||
|
||||
#include "machine/z80pio.h"
|
||||
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef LYNX_H_
|
||||
#define LYNX_H_
|
||||
#ifndef MAME_INCLUDES_LYNX_H
|
||||
#define MAME_INCLUDES_LYNX_H
|
||||
|
||||
#include "audio/lynx.h"
|
||||
#include "imagedev/snapquik.h"
|
||||
|
@ -8,8 +8,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef MAC_H_
|
||||
#define MAC_H_
|
||||
#ifndef MAME_INCLUDES_MAC_H
|
||||
#define MAME_INCLUDES_MAC_H
|
||||
|
||||
#include "machine/8530scc.h"
|
||||
#include "machine/6522via.h"
|
||||
|
@ -8,8 +8,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef MACPCI_H_
|
||||
#define MACPCI_H_
|
||||
#ifndef MAME_INCLUDES_MACPCI_H
|
||||
#define MAME_INCLUDES_MACPCI_H
|
||||
|
||||
#include "machine/8530scc.h"
|
||||
#include "machine/6522via.h"
|
||||
|
@ -1,7 +1,8 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Mirko Buffoni
|
||||
#ifndef MARIO_H_
|
||||
#define MARIO_H_
|
||||
|
||||
#ifndef MAME_INCLUDES_MARIO_H
|
||||
#define MAME_INCLUDES_MARIO_H
|
||||
|
||||
#include "machine/gen_latch.h"
|
||||
#include "machine/z80dma.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
|
||||
*****************************************************************************/
|
||||
|
||||
#ifndef __MICRONIC__
|
||||
#define __MICRONIC__
|
||||
#ifndef MAME_INCLUDES_MICRONIC_H
|
||||
#define MAME_INCLUDES_MICRONIC_H
|
||||
|
||||
#include "cpu/z80/z80.h"
|
||||
#include "video/hd61830.h"
|
||||
|
@ -14,8 +14,8 @@
|
||||
*
|
||||
******************************************************************************/
|
||||
|
||||
#ifndef MICROTAN_H_
|
||||
#define MICROTAN_H_
|
||||
#ifndef MAME_INCLUDES_MICROTAN_H
|
||||
#define MAME_INCLUDES_MICROTAN_H
|
||||
|
||||
#include "imagedev/snapquik.h"
|
||||
#include "machine/6522via.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef MIKRO80_H_
|
||||
#define MIKRO80_H_
|
||||
#ifndef MAME_INCLUDES_MIKRO80_H
|
||||
#define MAME_INCLUDES_MIKRO80_H
|
||||
|
||||
#include "machine/i8255.h"
|
||||
#include "imagedev/cassette.h"
|
||||
|
@ -2,8 +2,8 @@
|
||||
// copyright-holders:Curt Coder
|
||||
#pragma once
|
||||
|
||||
#ifndef __MIKROMIKKO__
|
||||
#define __MIKROMIKKO__
|
||||
#ifndef MAME_INCLUDES_MIKROMIKKO_H
|
||||
#define MAME_INCLUDES_MIKROMIKKO_H
|
||||
|
||||
#include "bus/rs232/rs232.h"
|
||||
#include "cpu/i8085/i8085.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef __MSX_H__
|
||||
#define __MSX_H__
|
||||
#ifndef MAME_INCLUDES_MSX_H
|
||||
#define MAME_INCLUDES_MSX_H
|
||||
|
||||
#include "cpu/z80/z80.h"
|
||||
#include "machine/i8255.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
|
||||
*************************************************************************/
|
||||
|
||||
#ifndef __MTX__
|
||||
#define __MTX__
|
||||
#ifndef MAME_INCLUDES_MTX_H
|
||||
#define MAME_INCLUDES_MTX_H
|
||||
|
||||
#include "imagedev/snapquik.h"
|
||||
#include "imagedev/cassette.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef NC_H_
|
||||
#define NC_H_
|
||||
#ifndef MAME_INCLUDES_NC_H
|
||||
#define MAME_INCLUDES_NC_H
|
||||
|
||||
#include "bus/centronics/ctronics.h"
|
||||
#include "machine/i8251.h"
|
||||
|
@ -1,8 +1,9 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ryan Holtz, R. Belmont
|
||||
#pragma once
|
||||
#ifndef INCLUDES_NDS_H
|
||||
#define INCLUDES_NDS_H
|
||||
|
||||
#ifndef MAME_INCLUDES_NDS_H
|
||||
#define MAME_INCLUDES_NDS_H
|
||||
|
||||
#include "cpu/arm7/arm7.h"
|
||||
#include "cpu/arm7/arm7core.h"
|
||||
|
@ -2,8 +2,8 @@
|
||||
// copyright-holders:Curt Coder
|
||||
#pragma once
|
||||
|
||||
#ifndef __NEWBRAIN__
|
||||
#define __NEWBRAIN__
|
||||
#ifndef MAME_INCLUDES_NEWBRAIN_H
|
||||
#define MAME_INCLUDES_NEWBRAIN_H
|
||||
|
||||
|
||||
#include "bus/newbrain/exp.h"
|
||||
|
@ -2,8 +2,8 @@
|
||||
// copyright-holders:Olivier Galibert
|
||||
#pragma once
|
||||
|
||||
#ifndef __NEXT__
|
||||
#define __NEXT__
|
||||
#ifndef MAME_INCLUDES_NEXT_H
|
||||
#define MAME_INCLUDES_NEXT_H
|
||||
|
||||
#include "cpu/m68000/m68000.h"
|
||||
#include "machine/nscsi_bus.h"
|
||||
|
@ -9,8 +9,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef DRIVERS_NOVAGBASE_H
|
||||
#define DRIVERS_NOVAGBASE_H
|
||||
#ifndef MAME_INCLUDES_NOVAGBASE_H
|
||||
#define MAME_INCLUDES_NOVAGBASE_H
|
||||
|
||||
#include "machine/timer.h"
|
||||
#include "sound/dac.h"
|
||||
|
@ -2,8 +2,8 @@
|
||||
// copyright-holders:Curt Coder
|
||||
#pragma once
|
||||
|
||||
#ifndef __OB68K1A__
|
||||
#define __OB68K1A__
|
||||
#ifndef MAME_INCLUDES_OB68K1A_H
|
||||
#define MAME_INCLUDES_OB68K1A_H
|
||||
|
||||
#include "bus/rs232/rs232.h"
|
||||
#include "cpu/m68000/m68000.h"
|
||||
|
@ -2,8 +2,8 @@
|
||||
// copyright-holders:Curt Coder, Robbbert, Wilbert Pol
|
||||
#pragma once
|
||||
|
||||
#ifndef __OSI__
|
||||
#define __OSI__
|
||||
#ifndef MAME_INCLUDES_OSI_H
|
||||
#define MAME_INCLUDES_OSI_H
|
||||
|
||||
|
||||
#include "cpu/m6502/m6502.h"
|
||||
|
@ -8,8 +8,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef PC1251_H_
|
||||
#define PC1251_H_
|
||||
#ifndef MAME_INCLUDES_PC1251_H
|
||||
#define MAME_INCLUDES_PC1251_H
|
||||
|
||||
#include "pocketc.h"
|
||||
#include "cpu/sc61860/sc61860.h"
|
||||
|
@ -8,8 +8,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef PC1350_H_
|
||||
#define PC1350_H_
|
||||
#ifndef MAME_INCLUDES_PC1350_H
|
||||
#define MAME_INCLUDES_PC1350_H
|
||||
|
||||
#include "pocketc.h"
|
||||
#include "cpu/sc61860/sc61860.h"
|
||||
|
@ -8,8 +8,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef PC1401_H_
|
||||
#define PC1401_H_
|
||||
#ifndef MAME_INCLUDES_PC1401_H
|
||||
#define MAME_INCLUDES_PC1401_H
|
||||
|
||||
#include "pocketc.h"
|
||||
#include "cpu/sc61860/sc61860.h"
|
||||
|
@ -8,8 +8,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef PC1403_H_
|
||||
#define PC1403_H_
|
||||
#ifndef MAME_INCLUDES_PC1403_H
|
||||
#define MAME_INCLUDES_PC1403_H
|
||||
|
||||
#include "pocketc.h"
|
||||
#include "cpu/sc61860/sc61860.h"
|
||||
|
@ -8,8 +8,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef _PC4_H_
|
||||
#define _PC4_H_
|
||||
#ifndef MAME_INCLUDES_PC4_H
|
||||
#define MAME_INCLUDES_PC4_H
|
||||
|
||||
|
||||
#include "sound/beep.h"
|
||||
|
@ -3,8 +3,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef __PC6001__
|
||||
#define __PC6001__
|
||||
#ifndef MAME_INCLUDES_PC6001_H
|
||||
#define MAME_INCLUDES_PC6001_H
|
||||
|
||||
#include "emu.h"
|
||||
|
||||
|
@ -2,8 +2,8 @@
|
||||
// copyright-holders:Curt Coder
|
||||
#pragma once
|
||||
|
||||
#ifndef __PC8001__
|
||||
#define __PC8001__
|
||||
#ifndef MAME_INCLUDES_PC8001_H
|
||||
#define MAME_INCLUDES_PC8001_H
|
||||
|
||||
|
||||
#include "cpu/z80/z80.h"
|
||||
|
@ -2,8 +2,8 @@
|
||||
// copyright-holders:Curt Coder
|
||||
#pragma once
|
||||
|
||||
#ifndef __PC8401A__
|
||||
#define __PC8401A__
|
||||
#ifndef MAME_INCLUDES_PC8401A_H
|
||||
#define MAME_INCLUDES_PC8401A_H
|
||||
|
||||
|
||||
#include "cpu/z80/z80.h"
|
||||
|
@ -3,8 +3,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef __PC9801__
|
||||
#define __PC9801__
|
||||
#ifndef MAME_INCLUDES_PC9801_H
|
||||
#define MAME_INCLUDES_PC9801_H
|
||||
|
||||
#include "cpu/i386/i386.h"
|
||||
#include "cpu/i86/i286.h"
|
||||
|
@ -8,8 +8,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef PCE_H_
|
||||
#define PCE_H_
|
||||
#ifndef MAME_INCLUDES_PCE_H
|
||||
#define MAME_INCLUDES_PCE_H
|
||||
|
||||
#include "cdrom.h"
|
||||
#include "cpu/h6280/h6280.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef PCW_H_
|
||||
#define PCW_H_
|
||||
#ifndef MAME_INCLUDES_PCW_H
|
||||
#define MAME_INCLUDES_PCW_H
|
||||
|
||||
#include "machine/upd765.h"
|
||||
#include "machine/ram.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef PCW16_H_
|
||||
#define PCW16_H_
|
||||
#ifndef MAME_INCLUDES_PCW16_H
|
||||
#define MAME_INCLUDES_PCW16_H
|
||||
|
||||
#include "cpu/z80/z80.h"
|
||||
#include "machine/upd765.h" /* FDC superio */
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef PDP1_H_
|
||||
#define PDP1_H_
|
||||
#ifndef MAME_INCLUDES_PDP1_H
|
||||
#define MAME_INCLUDES_PDP1_H
|
||||
|
||||
#include "cpu/pdp1/pdp1.h"
|
||||
#include "video/crt.h"
|
||||
|
@ -8,8 +8,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef _PES_H_
|
||||
#define _PES_H_
|
||||
#ifndef MAME_INCLUDES_PES_H
|
||||
#define MAME_INCLUDES_PES_H
|
||||
|
||||
#include "machine/terminal.h"
|
||||
#include "sound/tms5220.h"
|
||||
|
@ -2,8 +2,8 @@
|
||||
// copyright-holders:Curt Coder, Robbbert
|
||||
#pragma once
|
||||
|
||||
#ifndef __PHC25__
|
||||
#define __PHC25__
|
||||
#ifndef MAME_INCLUDES_PHC25_H
|
||||
#define MAME_INCLUDES_PHC25_H
|
||||
|
||||
|
||||
#include "cpu/z80/z80.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef PMD85_H_
|
||||
#define PMD85_H_
|
||||
#ifndef MAME_INCLUDES_PMD85_H
|
||||
#define MAME_INCLUDES_PMD85_H
|
||||
|
||||
#include "machine/i8251.h"
|
||||
#include "machine/pit8253.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef POCKETC_H_
|
||||
#define POCKETC_H_
|
||||
#ifndef MAME_INCLUDES_POCKETC_H
|
||||
#define MAME_INCLUDES_POCKETC_H
|
||||
|
||||
typedef const char *POCKETC_FIGURE[];
|
||||
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef POLY88_H_
|
||||
#define POLY88_H_
|
||||
#ifndef MAME_INCLUDES_POLY88_H
|
||||
#define MAME_INCLUDES_POLY88_H
|
||||
|
||||
#include "machine/i8251.h"
|
||||
#include "imagedev/cassette.h"
|
||||
|
@ -2,8 +2,8 @@
|
||||
// copyright-holders:Curt Coder
|
||||
#pragma once
|
||||
|
||||
#ifndef __POLY880__
|
||||
#define __POLY880__
|
||||
#ifndef MAME_INCLUDES_POLY880_H
|
||||
#define MAME_INCLUDES_POLY880_H
|
||||
|
||||
|
||||
#include "cpu/z80/z80.h"
|
||||
|
@ -2,8 +2,8 @@
|
||||
// copyright-holders:Curt Coder
|
||||
#pragma once
|
||||
|
||||
#ifndef __PROF80__
|
||||
#define __PROF80__
|
||||
#ifndef MAME_INCLUDES_PROF80_H
|
||||
#define MAME_INCLUDES_PROF80_H
|
||||
|
||||
#include "bus/ecbbus/ecbbus.h"
|
||||
#include "bus/rs232/rs232.h"
|
||||
|
@ -8,8 +8,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef _PSION_H_
|
||||
#define _PSION_H_
|
||||
#ifndef MAME_INCLUDES_PSION_H
|
||||
#define MAME_INCLUDES_PSION_H
|
||||
|
||||
#include "cpu/m6800/m6801.h"
|
||||
#include "machine/nvram.h"
|
||||
|
@ -2,8 +2,8 @@
|
||||
// copyright-holders:Curt Coder,Dirk Best
|
||||
#pragma once
|
||||
|
||||
#ifndef __PX8__
|
||||
#define __PX8__
|
||||
#ifndef MAME_INCLUDES_PX8_H
|
||||
#define MAME_INCLUDES_PX8_H
|
||||
|
||||
|
||||
#include "cpu/z80/z80.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef radio86_H_
|
||||
#define radio86_H_
|
||||
#ifndef MAME_INCLUDES_RADIO86_H
|
||||
#define MAME_INCLUDES_RADIO86_H
|
||||
|
||||
#include "machine/i8255.h"
|
||||
#include "machine/i8257.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
* Created on: 1/01/2013
|
||||
*/
|
||||
|
||||
#ifndef S11_H_
|
||||
#define S11_H_
|
||||
#ifndef MAME_INCLUDES_S11_H
|
||||
#define MAME_INCLUDES_S11_H
|
||||
|
||||
#include "audio/s11c_bg.h"
|
||||
#include "machine/6821pia.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
* Created on: 1/01/2013
|
||||
*/
|
||||
|
||||
#ifndef S11A_H_
|
||||
#define S11A_H_
|
||||
#ifndef MAME_INCLUDES_S11A_H
|
||||
#define MAME_INCLUDES_S11A_H
|
||||
|
||||
#include "includes/s11.h"
|
||||
|
||||
|
@ -6,8 +6,8 @@
|
||||
* Created on: 1/01/2013
|
||||
*/
|
||||
|
||||
#ifndef S11B_H_
|
||||
#define S11B_H_
|
||||
#ifndef MAME_INCLUDES_S11B_H
|
||||
#define MAME_INCLUDES_S11B_H
|
||||
|
||||
#include "includes/s11a.h"
|
||||
|
||||
|
@ -6,8 +6,8 @@
|
||||
* Created on: 1/01/2013
|
||||
*/
|
||||
|
||||
#ifndef S11C_H_
|
||||
#define S11C_H_
|
||||
#ifndef MAME_INCLUDES_S11C_H
|
||||
#define MAME_INCLUDES_S11C_H
|
||||
|
||||
#include "includes/s11b.h"
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Curt Coder
|
||||
#ifndef __SG1000__
|
||||
#define __SG1000__
|
||||
|
||||
#ifndef MAME_INCLUDES_SG1000_H
|
||||
#define MAME_INCLUDES_SG1000_H
|
||||
|
||||
#include "cpu/z80/z80.h"
|
||||
#include "formats/sf7000_dsk.h"
|
||||
|
@ -1,7 +1,8 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Angelo Salese, R. Belmont, Anthony Kruize, Fabio Priuli, Ryan Holtz
|
||||
#ifndef _SNES_H_
|
||||
#define _SNES_H_
|
||||
|
||||
#ifndef MAME_INCLUDES_SNES_H
|
||||
#define MAME_INCLUDES_SNES_H
|
||||
|
||||
#include "cpu/spc700/spc700.h"
|
||||
#include "cpu/g65816/g65816.h"
|
||||
|
@ -2,8 +2,8 @@
|
||||
// copyright-holders:Curt Coder, Mike Naberezny
|
||||
#pragma once
|
||||
|
||||
#ifndef __SOFTBOX__
|
||||
#define __SOFTBOX__
|
||||
#ifndef MAME_INCLUDES_SOFTBOX_H
|
||||
#define MAME_INCLUDES_SOFTBOX_H
|
||||
|
||||
#include "bus/ieee488/ieee488.h"
|
||||
#include "bus/imi7000/imi7000.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef SORCERER_H_
|
||||
#define SORCERER_H_
|
||||
#ifndef MAME_INCLUDES_SORCERER_H
|
||||
#define MAME_INCLUDES_SORCERER_H
|
||||
|
||||
#include "cpu/z80/z80.h"
|
||||
#include "sound/wave.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef __SPECPLS3_H__
|
||||
#define __SPECPLS3_H__
|
||||
#ifndef MAME_INCLUDES_SPECPLS3_H
|
||||
#define MAME_INCLUDES_SPECPLS3_H
|
||||
|
||||
INPUT_PORTS_EXTERN( spec_plus );
|
||||
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef SSYSTEM3_H_
|
||||
#define SSYSTEM3_H_
|
||||
#ifndef MAME_INCLUDES_SSYSTEM3_H
|
||||
#define MAME_INCLUDES_SSYSTEM3_H
|
||||
|
||||
#include "machine/6522via.h"
|
||||
|
||||
|
@ -6,8 +6,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef SVISION_H_
|
||||
#define SVISION_H_
|
||||
#ifndef MAME_INCLUDES_SVISION_H
|
||||
#define MAME_INCLUDES_SVISION_H
|
||||
|
||||
#include "cpu/m6502/m65c02.h"
|
||||
#include "machine/timer.h"
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user