diff options
Diffstat (limited to 'src/devices/video/epic12_blit8.cpp')
-rw-r--r-- | src/devices/video/epic12_blit8.cpp | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/src/devices/video/epic12_blit8.cpp b/src/devices/video/epic12_blit8.cpp deleted file mode 100644 index fb0ff8a7e24..00000000000 --- a/src/devices/video/epic12_blit8.cpp +++ /dev/null @@ -1,42 +0,0 @@ -// license:BSD-3-Clause -// copyright-holders:David Haywood -/* Special case 'Really Simple' blitters, no blending, no tinting etc.*/ - -#include "emu.h" -#include "epic12.h" - - -#define REALLY_SIMPLE 1 -#define BLENDED 0 - -#define TRANSPARENT 1 -#define FLIPX 0 -#define FUNCNAME draw_sprite_f0_ti0_tr1_simple -#include "epic12in.hxx" -#undef FUNCNAME -#undef FLIPX - -#define FLIPX 1 -#define FUNCNAME draw_sprite_f1_ti0_tr1_simple -#include "epic12in.hxx" -#undef FUNCNAME -#undef FLIPX -#undef TRANSPARENT - - -#define TRANSPARENT 0 -#define FLIPX 0 -#define FUNCNAME draw_sprite_f0_ti0_tr0_simple -#include "epic12in.hxx" -#undef FUNCNAME -#undef FLIPX - -#define FLIPX 1 -#define FUNCNAME draw_sprite_f1_ti0_tr0_simple -#include "epic12in.hxx" -#undef FUNCNAME -#undef FLIPX -#undef TRANSPARENT - -#undef BLENDED -#undef REALLY_SIMPLE |