mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
Removed some unused macros (nw)
This commit is contained in:
parent
9b7e7b430f
commit
b3a13f5962
7 changed files with 2 additions and 33 deletions
|
@ -34,21 +34,6 @@
|
|||
#include "emu.h"
|
||||
|
||||
|
||||
|
||||
//**************************************************************************
|
||||
// INTERFACE CONFIGURATION MACROS
|
||||
//**************************************************************************
|
||||
|
||||
#define MCFG_ADC0808_ADD(_tag, _clock, _config) \
|
||||
MCFG_DEVICE_ADD(_tag, ADC0808, _clock) \
|
||||
MCFG_DEVICE_CONFIG(_config)
|
||||
|
||||
|
||||
#define ADC0808_INTERFACE(name) \
|
||||
const adc0808_interface (name) =
|
||||
|
||||
|
||||
|
||||
//**************************************************************************
|
||||
// TYPE DEFINITIONS
|
||||
//**************************************************************************
|
||||
|
|
|
@ -45,10 +45,6 @@
|
|||
DEVICE CONFIGURATION MACROS
|
||||
***************************************************************************/
|
||||
|
||||
#define MCFG_I8257_ADD(_tag, _clock, _config) \
|
||||
MCFG_DEVICE_ADD(_tag, I8257, _clock) \
|
||||
MCFG_DEVICE_CONFIG(_config)
|
||||
|
||||
#define MCFG_I8257_OUT_HRQ_CB(_devcb) \
|
||||
devcb = &i8257_device::set_out_hrq_callback(*device, DEVCB_##_devcb);
|
||||
|
||||
|
|
|
@ -69,10 +69,6 @@ extern const device_type MM58274C;
|
|||
DEVICE CONFIGURATION MACROS
|
||||
***************************************************************************/
|
||||
|
||||
#define MCFG_MM58274C_ADD(_tag, _intrf) \
|
||||
MCFG_DEVICE_ADD(_tag, MM58274C, 0) \
|
||||
MCFG_DEVICE_CONFIG(_intrf)
|
||||
|
||||
#define MCFG_MM58274C_MODE24(_mode) \
|
||||
mm58274c_device::set_mode24(*device, _mode);
|
||||
|
||||
|
|
|
@ -15,10 +15,6 @@
|
|||
#define __EF9345_H__
|
||||
|
||||
|
||||
#define MCFG_EF9345_ADD(_tag, _config) \
|
||||
MCFG_DEVICE_ADD(_tag, EF9345, 0) \
|
||||
MCFG_DEVICE_CONFIG(_config)
|
||||
|
||||
#define MCFG_EF9345_PALETTE(_palette_tag) \
|
||||
ef9345_device::static_set_palette_tag(*device, "^" _palette_tag);
|
||||
|
||||
|
|
|
@ -142,10 +142,6 @@ private:
|
|||
extern const device_type K001005;
|
||||
|
||||
|
||||
#define MCFG_K001005_ADD(_tag, _interface) \
|
||||
MCFG_DEVICE_ADD(_tag, K001005, 0) \
|
||||
MCFG_DEVICE_CONFIG(_interface)
|
||||
|
||||
#define MCFG_K001005_TEXEL_CHIP(_tag) \
|
||||
k001005_device::set_texel_chip(*device, _tag);
|
||||
|
||||
|
|
|
@ -523,7 +523,7 @@ static MACHINE_CONFIG_START( alice32, mc10_state )
|
|||
MCFG_SCREEN_VISIBLE_AREA(00, 336-1, 00, 270-1)
|
||||
MCFG_PALETTE_ADD("palette", 8)
|
||||
|
||||
MCFG_EF9345_ADD("ef9345", "screen")
|
||||
MCFG_DEVICE_ADD("ef9345", EF9345, 0)
|
||||
MCFG_EF9345_PALETTE("palette")
|
||||
MCFG_TIMER_DRIVER_ADD_SCANLINE("alice32_sl", mc10_state, alice32_scanline, "screen", 0, 10)
|
||||
|
||||
|
|
|
@ -362,7 +362,7 @@ static MACHINE_CONFIG_START( vg5k, vg5k_state )
|
|||
|
||||
MCFG_TIMER_DRIVER_ADD_PERIODIC("irq_timer", vg5k_state, z80_irq, attotime::from_msec(20))
|
||||
|
||||
MCFG_EF9345_ADD("ef9345", "screen")
|
||||
MCFG_DEVICE_ADD("ef9345", EF9345, 0)
|
||||
MCFG_EF9345_PALETTE("palette")
|
||||
|
||||
/* video hardware */
|
||||
|
|
Loading…
Reference in a new issue