summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2024-01-04 22:31:28 +0100
committer Ivan Vangelista <mesgnet@yahoo.it>2024-01-04 22:31:28 +0100
commit194e5cd77fbde97f623f8b665e2d17a92c2b8e2d (patch)
tree36d4fcdf3e413efd938a840432f503a02e05b3e8 /src/devices
parent32047b59797a2e148e8551bd0b329c59807d43ae (diff)
New systems marked not working
------------------------------ Cuty Line Limited (ver.1.30) [freaktech] - igs/goldstar.cpp: enabled girls display for cmast91 and other games on same hw, removed 2nd ppi as PCB pics and readme only show one - various files: removed superfluous semicolons
Diffstat (limited to 'src/devices')
-rw-r--r--src/devices/cpu/scmp/scmpdasm.cpp2
-rw-r--r--src/devices/cpu/sh/sh7014_bsc.cpp2
-rw-r--r--src/devices/imagedev/cdromimg.cpp2
-rw-r--r--src/devices/video/mb86292.cpp2
-rw-r--r--src/devices/video/pc_vga_matrox.cpp4
-rw-r--r--src/devices/video/s3virge.cpp2
6 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/cpu/scmp/scmpdasm.cpp b/src/devices/cpu/scmp/scmpdasm.cpp
index f91fef7b4a1..3a6fbbbfda4 100644
--- a/src/devices/cpu/scmp/scmpdasm.cpp
+++ b/src/devices/cpu/scmp/scmpdasm.cpp
@@ -194,7 +194,7 @@ offs_t scmp_disassembler::disassemble(std::ostream &stream, offs_t pc, const dat
break;
default:
- util::stream_format(stream, "%-8sX'%02X", ".BYTE", op);;
+ util::stream_format(stream, "%-8sX'%02X", ".BYTE", op);
break;
}
return 1 | SUPPORTED;
diff --git a/src/devices/cpu/sh/sh7014_bsc.cpp b/src/devices/cpu/sh/sh7014_bsc.cpp
index 467bfdd1f46..c0014cea17b 100644
--- a/src/devices/cpu/sh/sh7014_bsc.cpp
+++ b/src/devices/cpu/sh/sh7014_bsc.cpp
@@ -50,7 +50,7 @@ void sh7014_bsc_device::map(address_map &map)
{
map(0x00, 0x01).rw(FUNC(sh7014_bsc_device::bcr1_r), FUNC(sh7014_bsc_device::bcr1_w));
map(0x02, 0x03).rw(FUNC(sh7014_bsc_device::bcr2_r), FUNC(sh7014_bsc_device::bcr2_w));
- map(0x04, 0x05).rw(FUNC(sh7014_bsc_device::wcr1_r), FUNC(sh7014_bsc_device::wcr1_w));;
+ map(0x04, 0x05).rw(FUNC(sh7014_bsc_device::wcr1_r), FUNC(sh7014_bsc_device::wcr1_w));
map(0x06, 0x07).rw(FUNC(sh7014_bsc_device::wcr2_r), FUNC(sh7014_bsc_device::wcr2_w));
map(0x0a, 0x0b).rw(FUNC(sh7014_bsc_device::dcr_r), FUNC(sh7014_bsc_device::dcr_w));
map(0x0c, 0x0d).rw(FUNC(sh7014_bsc_device::rtcsr_r), FUNC(sh7014_bsc_device::rtcsr_w));
diff --git a/src/devices/imagedev/cdromimg.cpp b/src/devices/imagedev/cdromimg.cpp
index 355314a8285..c5e0a7fbad6 100644
--- a/src/devices/imagedev/cdromimg.cpp
+++ b/src/devices/imagedev/cdromimg.cpp
@@ -100,7 +100,7 @@ std::pair<std::error_condition, std::string> cdrom_image_device::call_load()
if (has_preset_images())
{
setup_current_preset_image();
- return std::make_pair(image_error(0), std::string());;
+ return std::make_pair(image_error(0), std::string());
}
std::error_condition err;
diff --git a/src/devices/video/mb86292.cpp b/src/devices/video/mb86292.cpp
index f305992a9d6..d7e8371ed4a 100644
--- a/src/devices/video/mb86292.cpp
+++ b/src/devices/video/mb86292.cpp
@@ -1083,7 +1083,7 @@ void mb86292_device::fb_commit()
{
u16 pixel = vram_read_word(c_layer_addr + (x << 1));
if ((pixel & 0x7fff) == m_c_layer.transpen)
- pixel = vram_read_word(bl_layer_addr + (x << 1));;
+ pixel = vram_read_word(bl_layer_addr + (x << 1));
vram_write_word(fb_addr + (x << 1), pixel);
}
}
diff --git a/src/devices/video/pc_vga_matrox.cpp b/src/devices/video/pc_vga_matrox.cpp
index d9643d666ff..b795ec17877 100644
--- a/src/devices/video/pc_vga_matrox.cpp
+++ b/src/devices/video/pc_vga_matrox.cpp
@@ -656,10 +656,10 @@ uint32_t matrox_vga_device::screen_update(screen_device &screen, bitmap_rgb32 &b
const int m_test_y = cliprect.max_y;
if(machine().input().code_pressed(JOYCODE_X_RIGHT_SWITCH))
- m_test_x += 1 << (machine().input().code_pressed(JOYCODE_BUTTON2) ? 4 : 0);;
+ m_test_x += 1 << (machine().input().code_pressed(JOYCODE_BUTTON2) ? 4 : 0);
if(machine().input().code_pressed(JOYCODE_X_LEFT_SWITCH))
- m_test_x -= 1 << (machine().input().code_pressed(JOYCODE_BUTTON2) ? 4 : 0);;
+ m_test_x -= 1 << (machine().input().code_pressed(JOYCODE_BUTTON2) ? 4 : 0);
//if(machine().input().code_pressed(JOYCODE_Y_DOWN_SWITCH))
// m_test_y++;
diff --git a/src/devices/video/s3virge.cpp b/src/devices/video/s3virge.cpp
index 16f75c859c7..75b20f2ff87 100644
--- a/src/devices/video/s3virge.cpp
+++ b/src/devices/video/s3virge.cpp
@@ -298,7 +298,7 @@ void s3virge_vga_device::crtc_map(address_map &map)
);
map(0x59, 0x59).lrw8(
NAME([this] (offs_t offset) {
- return (s3virge.linear_address & 0xff000000) >> 24;;
+ return (s3virge.linear_address & 0xff000000) >> 24;
}),
NAME([this] (offs_t offset, u8 data) {
const uint32_t old_address = s3virge.linear_address;