summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--scripts/target/mame/arcade.lua2
-rw-r--r--src/devices/sound/dspv.h6
-rw-r--r--src/devices/sound/dspvd.h6
3 files changed, 8 insertions, 6 deletions
diff --git a/scripts/target/mame/arcade.lua b/scripts/target/mame/arcade.lua
index 3cf0955133a..10ac8d91d39 100644
--- a/scripts/target/mame/arcade.lua
+++ b/scripts/target/mame/arcade.lua
@@ -1467,6 +1467,8 @@ files {
MAME_DIR .. "src/mame/drivers/cps1.cpp",
MAME_DIR .. "src/mame/includes/cps1.h",
MAME_DIR .. "src/mame/video/cps1.cpp",
+ MAME_DIR .. "src/mame/drivers/cps1bl_5205.cpp",
+ MAME_DIR .. "src/mame/drivers/cps1bl_pic.cpp",
MAME_DIR .. "src/mame/drivers/kenseim.cpp",
MAME_DIR .. "src/mame/drivers/cps2.cpp",
MAME_DIR .. "src/mame/machine/cps2crypt.cpp",
diff --git a/src/devices/sound/dspv.h b/src/devices/sound/dspv.h
index 3ca6d6cb2c6..ba39428005f 100644
--- a/src/devices/sound/dspv.h
+++ b/src/devices/sound/dspv.h
@@ -3,8 +3,8 @@
// Yamaha DSPV, dsp used for acoustic simulation
-#ifndef DEVICES_SOUND_DSPV_H
-#define DEVICES_SOUND_DSPV_H
+#ifndef MAME_SOUND_DSPV_H
+#define MAME_SOUND_DSPV_H
#pragma once
@@ -65,4 +65,4 @@ private:
DECLARE_DEVICE_TYPE(DSPV, dspv_device)
-#endif
+#endif // MAME_SOUND_DSPV_H
diff --git a/src/devices/sound/dspvd.h b/src/devices/sound/dspvd.h
index 32f7cb35497..6f934374c59 100644
--- a/src/devices/sound/dspvd.h
+++ b/src/devices/sound/dspvd.h
@@ -7,8 +7,8 @@
//
// Disassembler
-#ifndef DEVICES_SOUND_DSPVD_H
-#define DEVICES_SOUND_DSPVD_H
+#ifndef MAME_SOUND_DSPVD_H
+#define MAME_SOUND_DSPVD_H
#pragma once
@@ -21,4 +21,4 @@ public:
virtual offs_t disassemble(std::ostream &stream, offs_t pc, const data_buffer &opcodes, const data_buffer &params) override;
};
-#endif
+#endif // MAME_SOUND_DSPVD_H