mirror of
https://github.com/holub/mame
synced 2025-07-04 17:38:08 +03:00
added protection against multiple includes (nw)
This commit is contained in:
parent
1080181708
commit
c7c6442b02
@ -1,3 +1,8 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#ifndef __BANKDEV_H__
|
||||||
|
#define __BANKDEV_H__
|
||||||
|
|
||||||
#include "emu.h"
|
#include "emu.h"
|
||||||
|
|
||||||
#define MCFG_ADDRESS_MAP_BANK_ENDIANNESS(_endianness) \
|
#define MCFG_ADDRESS_MAP_BANK_ENDIANNESS(_endianness) \
|
||||||
@ -65,3 +70,5 @@ private:
|
|||||||
|
|
||||||
// device type definition
|
// device type definition
|
||||||
extern const device_type ADDRESS_MAP_BANK;
|
extern const device_type ADDRESS_MAP_BANK;
|
||||||
|
|
||||||
|
#endif
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#ifndef __LINFLASH_H__
|
||||||
|
#define __LINFLASH_H__
|
||||||
|
|
||||||
#include "emu.h"
|
#include "emu.h"
|
||||||
#include "intelfsh.h"
|
#include "intelfsh.h"
|
||||||
#include "machine/pccard.h"
|
#include "machine/pccard.h"
|
||||||
@ -61,3 +66,5 @@ protected:
|
|||||||
// device-level overrides
|
// device-level overrides
|
||||||
virtual machine_config_constructor device_mconfig_additions() const;
|
virtual machine_config_constructor device_mconfig_additions() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user