diff --git a/.gitattributes b/.gitattributes index ddd736edcc2..7d037203e6c 100644 --- a/.gitattributes +++ b/.gitattributes @@ -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/testcpu.c 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/eigccx86.h svneol=native#text/plain src/emu/eminline.h svneol=native#text/plain diff --git a/src/emu/drivlgcy.h b/src/emu/drivlgcy.h deleted file mode 100644 index 036ef4bc99d..00000000000 --- a/src/emu/drivlgcy.h +++ /dev/null @@ -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(device))); - - - -#define VIDEO_START_CALL(name) VIDEO_START_NAME(name)(machine) - -#endif /* __DRIVLGCY_H__ */