diff options
author | 2024-09-20 09:34:38 +0200 | |
---|---|---|
committer | 2024-09-20 09:34:58 +0200 | |
commit | 18c6ade499a0cbdaa6a9a2f618442860ceb130ae (patch) | |
tree | a5764595127b38b8483ca33363c2d1506df93707 | |
parent | 5bbf7bd26f3a1a468a482be0737d750d36eed2b2 (diff) |
bus/bml3: drop bml3 prefix for slot options filenames
-rw-r--r-- | scripts/src/bus.lua | 16 | ||||
-rw-r--r-- | src/devices/bus/bml3/kanji.cpp (renamed from src/devices/bus/bml3/bml3kanji.cpp) | 2 | ||||
-rw-r--r-- | src/devices/bus/bml3/kanji.h (renamed from src/devices/bus/bml3/bml3kanji.h) | 0 | ||||
-rw-r--r-- | src/devices/bus/bml3/mp1802.cpp (renamed from src/devices/bus/bml3/bml3mp1802.cpp) | 2 | ||||
-rw-r--r-- | src/devices/bus/bml3/mp1802.h (renamed from src/devices/bus/bml3/bml3mp1802.h) | 0 | ||||
-rw-r--r-- | src/devices/bus/bml3/mp1805.cpp (renamed from src/devices/bus/bml3/bml3mp1805.cpp) | 2 | ||||
-rw-r--r-- | src/devices/bus/bml3/mp1805.h (renamed from src/devices/bus/bml3/bml3mp1805.h) | 0 | ||||
-rw-r--r-- | src/devices/bus/bml3/rtc.cpp (renamed from src/devices/bus/bml3/bml3rtc.cpp) | 2 | ||||
-rw-r--r-- | src/devices/bus/bml3/rtc.h (renamed from src/devices/bus/bml3/bml3rtc.h) | 0 | ||||
-rw-r--r-- | src/mame/hitachi/bml3.cpp | 8 |
10 files changed, 16 insertions, 16 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index 16f86826013..2b94b22976c 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 index 0e2f9cf7d39..ecc466b2bda 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 index d1e456508ae..d1e456508ae 100644 --- a/src/devices/bus/bml3/bml3kanji.h +++ b/src/devices/bus/bml3/kanji.h diff --git a/src/devices/bus/bml3/bml3mp1802.cpp b/src/devices/bus/bml3/mp1802.cpp index f9695af9067..30c39ae61d4 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 index ecc379261c6..ecc379261c6 100644 --- a/src/devices/bus/bml3/bml3mp1802.h +++ b/src/devices/bus/bml3/mp1802.h diff --git a/src/devices/bus/bml3/bml3mp1805.cpp b/src/devices/bus/bml3/mp1805.cpp index 707608c6db3..a836243cb98 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 index 3dfecc0ec22..3dfecc0ec22 100644 --- a/src/devices/bus/bml3/bml3mp1805.h +++ b/src/devices/bus/bml3/mp1805.h diff --git a/src/devices/bus/bml3/bml3rtc.cpp b/src/devices/bus/bml3/rtc.cpp index 28971440f49..37bf5771878 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 index 155bce0904c..155bce0904c 100644 --- a/src/devices/bus/bml3/bml3rtc.h +++ b/src/devices/bus/bml3/rtc.h diff --git a/src/mame/hitachi/bml3.cpp b/src/mame/hitachi/bml3.cpp index 31a212bd41a..5414d3ef7cf 100644 --- a/src/mame/hitachi/bml3.cpp +++ b/src/mame/hitachi/bml3.cpp @@ -26,10 +26,10 @@ TODO: #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" |