From 10a20e4d7de5fbd3dc3b2c1651e107578bf15dc1 Mon Sep 17 00:00:00 2001 From: Scott Stone Date: Sun, 24 Apr 2016 19:10:07 -0400 Subject: [PATCH] Unified filenames for ep64 audio/video components to match driver (nw) --- scripts/target/mame/mess.lua | 8 ++++---- src/devices/bus/ep64/exp.h | 2 +- src/mame/audio/{dave.cpp => ep64.cpp} | 3 ++- src/mame/audio/{dave.h => ep64.h} | 1 + src/mame/includes/ep64.h | 4 ++-- src/mame/video/{nick.cpp => ep64.cpp} | 3 ++- src/mame/video/{nick.h => ep64.h} | 1 + 7 files changed, 13 insertions(+), 9 deletions(-) rename src/mame/audio/{dave.cpp => ep64.cpp} (99%) rename src/mame/audio/{dave.h => ep64.h} (98%) rename src/mame/video/{nick.cpp => ep64.cpp} (99%) rename src/mame/video/{nick.h => ep64.h} (98%) diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 11c057ccbc0..720f6244a3b 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -1656,10 +1656,10 @@ createMESSProjects(_target, _subtarget, "enterprise") files { MAME_DIR .. "src/mame/drivers/ep64.cpp", MAME_DIR .. "src/mame/includes/ep64.h", - MAME_DIR .. "src/mame/audio/dave.cpp", - MAME_DIR .. "src/mame/audio/dave.h", - MAME_DIR .. "src/mame/video/nick.cpp", - MAME_DIR .. "src/mame/video/nick.h", + MAME_DIR .. "src/mame/audio/ep64.cpp", + MAME_DIR .. "src/mame/audio/ep64.h", + MAME_DIR .. "src/mame/video/ep64.cpp", + MAME_DIR .. "src/mame/video/ep64.h", } createMESSProjects(_target, _subtarget, "entex") diff --git a/src/devices/bus/ep64/exp.h b/src/devices/bus/ep64/exp.h index a80f05b76f9..31b96622535 100644 --- a/src/devices/bus/ep64/exp.h +++ b/src/devices/bus/ep64/exp.h @@ -48,7 +48,7 @@ #define __EP64_EXPANSION_BUS__ #include "emu.h" -#include "audio/dave.h" +#include "audio/ep64.h" diff --git a/src/mame/audio/dave.cpp b/src/mame/audio/ep64.cpp similarity index 99% rename from src/mame/audio/dave.cpp rename to src/mame/audio/ep64.cpp index 138b8d9ac40..f44c1927968 100644 --- a/src/mame/audio/dave.cpp +++ b/src/mame/audio/ep64.cpp @@ -3,10 +3,11 @@ /********************************************************************** Intelligent Designs DAVE emulation + Used in Enterprise Enterprise Sixty Four / One Two Eight Computers **********************************************************************/ -#include "dave.h" +#include "ep64.h" diff --git a/src/mame/audio/dave.h b/src/mame/audio/ep64.h similarity index 98% rename from src/mame/audio/dave.h rename to src/mame/audio/ep64.h index de534c51bda..9f356a5e795 100644 --- a/src/mame/audio/dave.h +++ b/src/mame/audio/ep64.h @@ -3,6 +3,7 @@ /********************************************************************** Intelligent Designs DAVE emulation + Used in Enterprise Enterprise Sixty Four / One Two Eight Computers **********************************************************************/ diff --git a/src/mame/includes/ep64.h b/src/mame/includes/ep64.h index 85c0ae27a97..c06c8c4f840 100644 --- a/src/mame/includes/ep64.h +++ b/src/mame/includes/ep64.h @@ -11,7 +11,7 @@ #ifndef __EP64__ #define __EP64__ -#include "audio/dave.h" +#include "audio/ep64.h" #include "bus/rs232/rs232.h" #include "bus/ep64/exp.h" #include "cpu/z80/z80.h" @@ -20,7 +20,7 @@ #include "bus/generic/slot.h" #include "bus/generic/carts.h" #include "machine/ram.h" -#include "video/nick.h" +#include "video/ep64.h" #define Z80_TAG "u1" #define DAVE_TAG "u3" diff --git a/src/mame/video/nick.cpp b/src/mame/video/ep64.cpp similarity index 99% rename from src/mame/video/nick.cpp rename to src/mame/video/ep64.cpp index 68b9011d31c..73df441e64d 100644 --- a/src/mame/video/nick.cpp +++ b/src/mame/video/ep64.cpp @@ -3,10 +3,11 @@ /********************************************************************** Intelligent Designs NICK emulation + Used in Enterprise Enterprise Sixty Four / One Two Eight Computers **********************************************************************/ -#include "nick.h" +#include "ep64.h" diff --git a/src/mame/video/nick.h b/src/mame/video/ep64.h similarity index 98% rename from src/mame/video/nick.h rename to src/mame/video/ep64.h index ba701283cd9..4647b5f132e 100644 --- a/src/mame/video/nick.h +++ b/src/mame/video/ep64.h @@ -3,6 +3,7 @@ /********************************************************************** Intelligent Designs NICK emulation + Used in Enterprise Enterprise Sixty Four / One Two Eight Computers **********************************************************************/