From 18c6ade499a0cbdaa6a9a2f618442860ceb130ae Mon Sep 17 00:00:00 2001 From: angelosa Date: Fri, 20 Sep 2024 09:34:38 +0200 Subject: [PATCH] bus/bml3: drop bml3 prefix for slot options filenames --- scripts/src/bus.lua | 16 ++++++++-------- .../bus/bml3/{bml3kanji.cpp => kanji.cpp} | 2 +- src/devices/bus/bml3/{bml3kanji.h => kanji.h} | 0 .../bus/bml3/{bml3mp1802.cpp => mp1802.cpp} | 2 +- src/devices/bus/bml3/{bml3mp1802.h => mp1802.h} | 0 .../bus/bml3/{bml3mp1805.cpp => mp1805.cpp} | 2 +- src/devices/bus/bml3/{bml3mp1805.h => mp1805.h} | 0 src/devices/bus/bml3/{bml3rtc.cpp => rtc.cpp} | 2 +- src/devices/bus/bml3/{bml3rtc.h => rtc.h} | 0 src/mame/hitachi/bml3.cpp | 8 ++++---- 10 files changed, 16 insertions(+), 16 deletions(-) rename src/devices/bus/bml3/{bml3kanji.cpp => kanji.cpp} (99%) rename src/devices/bus/bml3/{bml3kanji.h => kanji.h} (100%) rename src/devices/bus/bml3/{bml3mp1802.cpp => mp1802.cpp} (99%) rename src/devices/bus/bml3/{bml3mp1802.h => mp1802.h} (100%) rename src/devices/bus/bml3/{bml3mp1805.cpp => mp1805.cpp} (99%) rename src/devices/bus/bml3/{bml3mp1805.h => mp1805.h} (100%) rename src/devices/bus/bml3/{bml3rtc.cpp => rtc.cpp} (99%) rename src/devices/bus/bml3/{bml3rtc.h => rtc.h} (100%) diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index 16f86826013d4..2b94b22976ccb 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -4235,14 +4235,14 @@ if (BUSES["BML3"]~=null) then files { MAME_DIR .. "src/devices/bus/bml3/bml3bus.cpp", MAME_DIR .. "src/devices/bus/bml3/bml3bus.h", - MAME_DIR .. "src/devices/bus/bml3/bml3mp1802.cpp", - MAME_DIR .. "src/devices/bus/bml3/bml3mp1802.h", - MAME_DIR .. "src/devices/bus/bml3/bml3mp1805.cpp", - MAME_DIR .. "src/devices/bus/bml3/bml3mp1805.h", - MAME_DIR .. "src/devices/bus/bml3/bml3kanji.cpp", - MAME_DIR .. "src/devices/bus/bml3/bml3kanji.h", - MAME_DIR .. "src/devices/bus/bml3/bml3rtc.cpp", - MAME_DIR .. "src/devices/bus/bml3/bml3rtc.h", + MAME_DIR .. "src/devices/bus/bml3/mp1802.cpp", + MAME_DIR .. "src/devices/bus/bml3/mp1802.h", + MAME_DIR .. "src/devices/bus/bml3/mp1805.cpp", + MAME_DIR .. "src/devices/bus/bml3/mp1805.h", + MAME_DIR .. "src/devices/bus/bml3/kanji.cpp", + MAME_DIR .. "src/devices/bus/bml3/kanji.h", + MAME_DIR .. "src/devices/bus/bml3/rtc.cpp", + MAME_DIR .. "src/devices/bus/bml3/rtc.h", } end diff --git a/src/devices/bus/bml3/bml3kanji.cpp b/src/devices/bus/bml3/kanji.cpp similarity index 99% rename from src/devices/bus/bml3/bml3kanji.cpp rename to src/devices/bus/bml3/kanji.cpp index 0e2f9cf7d3952..ecc466b2bdae9 100644 --- a/src/devices/bus/bml3/bml3kanji.cpp +++ b/src/devices/bus/bml3/kanji.cpp @@ -9,7 +9,7 @@ *********************************************************************/ #include "emu.h" -#include "bml3kanji.h" +#include "kanji.h" /*************************************************************************** diff --git a/src/devices/bus/bml3/bml3kanji.h b/src/devices/bus/bml3/kanji.h similarity index 100% rename from src/devices/bus/bml3/bml3kanji.h rename to src/devices/bus/bml3/kanji.h diff --git a/src/devices/bus/bml3/bml3mp1802.cpp b/src/devices/bus/bml3/mp1802.cpp similarity index 99% rename from src/devices/bus/bml3/bml3mp1802.cpp rename to src/devices/bus/bml3/mp1802.cpp index f9695af906749..30c39ae61d49d 100644 --- a/src/devices/bus/bml3/bml3mp1802.cpp +++ b/src/devices/bus/bml3/mp1802.cpp @@ -10,7 +10,7 @@ *********************************************************************/ #include "emu.h" -#include "bml3mp1802.h" +#include "mp1802.h" #include "softlist_dev.h" diff --git a/src/devices/bus/bml3/bml3mp1802.h b/src/devices/bus/bml3/mp1802.h similarity index 100% rename from src/devices/bus/bml3/bml3mp1802.h rename to src/devices/bus/bml3/mp1802.h diff --git a/src/devices/bus/bml3/bml3mp1805.cpp b/src/devices/bus/bml3/mp1805.cpp similarity index 99% rename from src/devices/bus/bml3/bml3mp1805.cpp rename to src/devices/bus/bml3/mp1805.cpp index 707608c6db391..a836243cb9857 100644 --- a/src/devices/bus/bml3/bml3mp1805.cpp +++ b/src/devices/bus/bml3/mp1805.cpp @@ -10,7 +10,7 @@ *********************************************************************/ #include "emu.h" -#include "bml3mp1805.h" +#include "mp1805.h" #include "softlist_dev.h" diff --git a/src/devices/bus/bml3/bml3mp1805.h b/src/devices/bus/bml3/mp1805.h similarity index 100% rename from src/devices/bus/bml3/bml3mp1805.h rename to src/devices/bus/bml3/mp1805.h diff --git a/src/devices/bus/bml3/bml3rtc.cpp b/src/devices/bus/bml3/rtc.cpp similarity index 99% rename from src/devices/bus/bml3/bml3rtc.cpp rename to src/devices/bus/bml3/rtc.cpp index 28971440f497e..37bf57718786a 100644 --- a/src/devices/bus/bml3/bml3rtc.cpp +++ b/src/devices/bus/bml3/rtc.cpp @@ -15,7 +15,7 @@ *********************************************************************/ #include "emu.h" -#include "bml3rtc.h" +#include "rtc.h" //************************************************************************** diff --git a/src/devices/bus/bml3/bml3rtc.h b/src/devices/bus/bml3/rtc.h similarity index 100% rename from src/devices/bus/bml3/bml3rtc.h rename to src/devices/bus/bml3/rtc.h diff --git a/src/mame/hitachi/bml3.cpp b/src/mame/hitachi/bml3.cpp index 31a212bd41a56..5414d3ef7cf7a 100644 --- a/src/mame/hitachi/bml3.cpp +++ b/src/mame/hitachi/bml3.cpp @@ -26,10 +26,10 @@ Basic Master Level 3 (MB-689x) (c) 1980 Hitachi #include "emupal.h" #include "bus/bml3/bml3bus.h" -#include "bus/bml3/bml3mp1802.h" -#include "bus/bml3/bml3mp1805.h" -#include "bus/bml3/bml3kanji.h" -#include "bus/bml3/bml3rtc.h" +#include "bus/bml3/mp1802.h" +#include "bus/bml3/mp1805.h" +#include "bus/bml3/kanji.h" +#include "bus/bml3/rtc.h" #include "screen.h" #include "speaker.h"