mirror of
https://github.com/holub/mame
synced 2025-06-08 22:03:55 +03:00
forgot to remove this earlier, not used anymore (nw)
This commit is contained in:
parent
b209185205
commit
1d73b9652d
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -2130,7 +2130,6 @@ src/emu/drivers/empty.c svneol=native#text/plain
|
|||||||
src/emu/drivers/emudummy.c svneol=native#text/plain
|
src/emu/drivers/emudummy.c svneol=native#text/plain
|
||||||
src/emu/drivers/testcpu.c svneol=native#text/plain
|
src/emu/drivers/testcpu.c svneol=native#text/plain
|
||||||
src/emu/drivers/xtal.h svneol=native#text/plain
|
src/emu/drivers/xtal.h svneol=native#text/plain
|
||||||
src/emu/drivlgcy.h svneol=native#text/plain
|
|
||||||
src/emu/eigccppc.h svneol=native#text/plain
|
src/emu/eigccppc.h svneol=native#text/plain
|
||||||
src/emu/eigccx86.h svneol=native#text/plain
|
src/emu/eigccx86.h svneol=native#text/plain
|
||||||
src/emu/eminline.h svneol=native#text/plain
|
src/emu/eminline.h svneol=native#text/plain
|
||||||
|
@ -1,30 +0,0 @@
|
|||||||
// license:BSD-3-Clause
|
|
||||||
// copyright-holders:Aaron Giles
|
|
||||||
/***************************************************************************
|
|
||||||
|
|
||||||
drivlgcy.h
|
|
||||||
|
|
||||||
Legacy driver helpers.
|
|
||||||
|
|
||||||
***************************************************************************/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#ifndef __DRIVLGCY_H__
|
|
||||||
#define __DRIVLGCY_H__
|
|
||||||
|
|
||||||
//**************************************************************************
|
|
||||||
// MACROS
|
|
||||||
//**************************************************************************
|
|
||||||
|
|
||||||
#define MCFG_VIDEO_START(_func) \
|
|
||||||
driver_device::static_set_callback(*owner, driver_device::CB_VIDEO_START, VIDEO_START_NAME(_func));
|
|
||||||
|
|
||||||
#define MCFG_PALETTE_INIT_LEGACY(_func) \
|
|
||||||
palette_device::static_set_init(*device, palette_init_delegate(PALETTE_INIT_NAME(_func), "palette_init_" #_func, downcast<palette_device *>(device)));
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#define VIDEO_START_CALL(name) VIDEO_START_NAME(name)(machine)
|
|
||||||
|
|
||||||
#endif /* __DRIVLGCY_H__ */
|
|
Loading…
Reference in New Issue
Block a user