Skip to content

Commit

Permalink
bus/bml3: drop bml3 prefix for slot options filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
angelosa committed Sep 20, 2024
1 parent 5bbf7bd commit 18c6ade
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions scripts/src/bus.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*********************************************************************/

#include "emu.h"
#include "bml3kanji.h"
#include "kanji.h"


/***************************************************************************
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*********************************************************************/

#include "emu.h"
#include "bml3mp1802.h"
#include "mp1802.h"

#include "softlist_dev.h"

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*********************************************************************/

#include "emu.h"
#include "bml3mp1805.h"
#include "mp1805.h"

#include "softlist_dev.h"

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*********************************************************************/

#include "emu.h"
#include "bml3rtc.h"
#include "rtc.h"


//**************************************************************************
Expand Down
File renamed without changes.
8 changes: 4 additions & 4 deletions src/mame/hitachi/bml3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 18c6ade

Please sign in to comment.