summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2022-09-25 00:56:34 +1000
committer Vas Crabb <vas@vastheman.com>2022-09-25 00:56:34 +1000
commitb2679ec43c7b358b29f2c5a3b6d3ccb93abbc8f3 (patch)
treed304ecf98d985c9f53d4a0cf356e6b260e50ff17 /src
parentbec3213167334e5dac5e03de66b83dc73ad96c04 (diff)
srcclean pass in preparation for release branch
Diffstat (limited to 'src')
-rw-r--r--src/devices/bus/mtu130/board.h10
-rw-r--r--src/devices/cpu/m6502/m6502.h4
-rw-r--r--src/devices/sound/hc55516.cpp2
-rw-r--r--src/lib/formats/ap2_dsk.cpp6
-rw-r--r--src/lib/formats/fsmgr.h4
-rw-r--r--src/lib/formats/victor9k_dsk.cpp34
-rw-r--r--src/mame/act/victor9k.cpp6
-rw-r--r--src/mame/apple/apple2gs.cpp24
-rw-r--r--src/mame/apple/lisa.cpp4
-rw-r--r--src/mame/facit/f4431.cpp40
-rw-r--r--src/mame/facit/f4431_kbd.cpp6
-rwxr-xr-xsrc/mame/ibm/rs6000_type7xxx.cpp24
-rw-r--r--src/mame/konami/rockrage.cpp2
-rw-r--r--src/mame/layout/f4431.lay4
-rw-r--r--src/mame/misc/mtu130.cpp8
-rw-r--r--src/mame/psikyo/psikyosh.cpp2
16 files changed, 90 insertions, 90 deletions
diff --git a/src/devices/bus/mtu130/board.h b/src/devices/bus/mtu130/board.h
index fb14cf08b6f..a7556757c5e 100644
--- a/src/devices/bus/mtu130/board.h
+++ b/src/devices/bus/mtu130/board.h
@@ -17,7 +17,7 @@ public:
// Read/write on banks 2/3
virtual void write23(offs_t offset, u8 data) = 0;
virtual u8 read23(offs_t offset) = 0;
-
+
// Map i/o in the bfxx area.
virtual void map_io(address_space_installer &space) = 0;
@@ -38,14 +38,14 @@ public:
// Read/write on banks 2/3, read return 0xff if not driven
void write23(offs_t offset, u8 data) {
- auto dev = get_card_device();
- if(dev)
+ auto dev = get_card_device();
+ if(dev)
dev->write23(offset, data);
}
u8 read23(offs_t offset) {
- auto dev = get_card_device();
- return dev ? dev->read23(offset) : 0xff;
+ auto dev = get_card_device();
+ return dev ? dev->read23(offset) : 0xff;
}
void map_io(address_space_installer &space);
diff --git a/src/devices/cpu/m6502/m6502.h b/src/devices/cpu/m6502/m6502.h
index a94448eddc1..4b05d7a0846 100644
--- a/src/devices/cpu/m6502/m6502.h
+++ b/src/devices/cpu/m6502/m6502.h
@@ -38,8 +38,8 @@ public:
m6502_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
void set_address_width(int width, bool custom_interface) {
- program_config.m_addr_width = width;
- sprogram_config.m_addr_width = width;
+ program_config.m_addr_width = width;
+ sprogram_config.m_addr_width = width;
uses_custom_memory_interface = custom_interface;
}
diff --git a/src/devices/sound/hc55516.cpp b/src/devices/sound/hc55516.cpp
index 33dcab70e6a..ab4497a4a93 100644
--- a/src/devices/sound/hc55516.cpp
+++ b/src/devices/sound/hc55516.cpp
@@ -11,7 +11,7 @@
TODO:
- see .h file
- - research HC-55536 and HC-55564 differences vs HC-55516 (better auto-zeroing,
+ - research HC-55536 and HC-55564 differences vs HC-55516 (better auto-zeroing,
and removal of the encoder offset compensation DAC?)
- /src/mame/exidy/exidy440_a.cpp has its own internal implementation of the
MC3417 and MC3418, it should be using this file instead
diff --git a/src/lib/formats/ap2_dsk.cpp b/src/lib/formats/ap2_dsk.cpp
index 31f2554aea9..bb29cd1702b 100644
--- a/src/lib/formats/ap2_dsk.cpp
+++ b/src/lib/formats/ap2_dsk.cpp
@@ -2054,11 +2054,11 @@ bool moof_format::load(util::random_read &io, uint32_t form_factor, const std::v
uint32_t trks_off = off_trks + (fidx * 8);
uint32_t boff = (uint32_t)r16(img, trks_off + 0) * 512;
uint32_t track_size = r32(img, trks_off + 4);
-
+
uint32_t total_ticks = 0;
for(uint32_t i=0; i != track_size; i++)
total_ticks += img[boff+i];
-
+
// Assume there is always a pulse at index, and it's
// the last one in the stream
std::vector<uint32_t> &buf = image->get_buffer(track, head);
@@ -2075,7 +2075,7 @@ bool moof_format::load(util::random_read &io, uint32_t form_factor, const std::v
uint32_t trks_off = off_trks + (idx * 8);
uint32_t boff = (uint32_t)r16(img, trks_off + 0) * 512;
-
+
uint32_t track_size = r32(img, trks_off + 4);
if (track_size == 0)
diff --git a/src/lib/formats/fsmgr.h b/src/lib/formats/fsmgr.h
index 6e3220ad753..fa4acfaafe8 100644
--- a/src/lib/formats/fsmgr.h
+++ b/src/lib/formats/fsmgr.h
@@ -301,8 +301,8 @@ public:
virtual void add_format(const floppy_image_format_t &type, u32 image_size, const char *name, const char *description) = 0;
private:
- u32 m_form_factor;
- const std::vector<u32> & m_variants;
+ u32 m_form_factor;
+ const std::vector<u32> & m_variants;
};
struct hd_enumerator {
diff --git a/src/lib/formats/victor9k_dsk.cpp b/src/lib/formats/victor9k_dsk.cpp
index df2b503aa02..eb2a0135d20 100644
--- a/src/lib/formats/victor9k_dsk.cpp
+++ b/src/lib/formats/victor9k_dsk.cpp
@@ -36,10 +36,10 @@
7 71-79 63-74 12 149.6 401
8 unused 75-79 11 144.0 417
- * The documentation for the Victor lists Zone 4 as ending with Track 48
- on side 1 and track 40 on side two. This is incorrect. The above table
- reflects disks analyzed from various machines and matches the assembly
- code in the floppy driver. Various written documents contain this
+ * The documentation for the Victor lists Zone 4 as ending with Track 48
+ on side 1 and track 40 on side two. This is incorrect. The above table
+ reflects disks analyzed from various machines and matches the assembly
+ code in the floppy driver. Various written documents contain this
documentation bug.
Interleave factor 3
@@ -152,16 +152,16 @@ int victor9k_format::find_size(util::random_read &io, uint32_t form_factor)
{
return find_size(io);
}
-
-int victor9k_format::identify(floppy_image *image)
+
+int victor9k_format::identify(floppy_image *image)
{
for(int i=0; formats[i].form_factor; i++) {
const format &f = formats[i];
if(f.variant == image->get_variant())
return i;
}
-
- return -1;
+
+ return -1;
}
@@ -210,7 +210,7 @@ void victor9k_format::log_boot_sector(uint8_t *data)
//Disk type - flags
osd_printf_verbose("%s sided\n", (data[32]) ? "Double" : "Single");
- //Sector Interleave
+ //Sector Interleave
osd_printf_verbose("Sector Interleave: %02x\n", data[33]);
// Disc type
@@ -296,7 +296,7 @@ bool victor9k_format::load(util::random_read &io, uint32_t form_factor, const st
const format &f = formats[type];
- osd_printf_verbose("Type: %d Head Count: %d Sector Count: %d\n", type,
+ osd_printf_verbose("Type: %d Head Count: %d Sector Count: %d\n", type,
f.head_count, f.sector_count);
uint64_t size;
@@ -314,7 +314,7 @@ bool victor9k_format::load(util::random_read &io, uint32_t form_factor, const st
int track_offset = 0;
- osd_printf_verbose("load Heads: %01d Tracks: %02d Sectors/track head[1]track[1]: %02d\n ",
+ osd_printf_verbose("load Heads: %01d Tracks: %02d Sectors/track head[1]track[1]: %02d\n ",
f.head_count, f.track_count, sectors_per_track[1][1]);
for (int head = 0; head < f.head_count; head++) {
@@ -432,7 +432,7 @@ const int victor9k_format::speed_zone[2][80] =
1, 1, 1, 1, 1, 1, 1, 1,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
- 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
+ 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
@@ -457,7 +457,7 @@ bool victor9k_format::save(util::random_read_write &io, const std::vector<uint32
const format &f = formats[type];
- osd_printf_verbose("save Heads: %01d Tracks: %02d Sectors/track head[1]track[1]: %02d\n ",
+ osd_printf_verbose("save Heads: %01d Tracks: %02d Sectors/track head[1]track[1]: %02d\n ",
f.head_count, f.track_count, sectors_per_track[1][1]);
for(int head=0; head < f.head_count; head++) {
for(int track=0; track < f.track_count; track++) {
@@ -466,7 +466,7 @@ bool victor9k_format::save(util::random_read_write &io, const std::vector<uint32
uint8_t sectdata[40*512];
desc_s sectors[40];
int offset = get_image_offset(f, head, track);
- osd_printf_verbose(">>type: %s, head: %d, track: %d, sector_count: %d, offset: %d, track_size: %d\n",
+ osd_printf_verbose(">>type: %s, head: %d, track: %d, sector_count: %d, offset: %d, track_size: %d\n",
f.sector_base_size, head, track, sector_count, offset, track_size);
build_sector_description(f, sectdata, 0, sectors, sector_count);
@@ -481,7 +481,7 @@ bool victor9k_format::save(util::random_read_write &io, const std::vector<uint32
void victor9k_format::extract_sectors(floppy_image *image, const format &f, desc_s *sdesc, int track, int head, int sector_count)
{
-
+
// Extract the sectors
auto bitstream = generate_bitstream_from_track(track, head, cell_size[speed_zone[head][track]], image);
auto sectors = extract_sectors_from_bitstream_victor_gcr5(bitstream);
@@ -492,11 +492,11 @@ void victor9k_format::extract_sectors(floppy_image *image, const format &f, desc
sectors.push_back(sector);
}
}
-
+
for(int i=0; i<sector_count; i++) {
desc_s &ds = sdesc[i];
const auto &data = sectors[ds.sector_id];
- osd_printf_verbose("Head: %01d TracK: %02d Total Sectors: %02d Current Sector: %02d ",
+ osd_printf_verbose("Head: %01d TracK: %02d Total Sectors: %02d Current Sector: %02d ",
head, track, sector_count, i);
if(data.empty()) {
memset((uint8_t *)ds.data, 0, ds.size);
diff --git a/src/mame/act/victor9k.cpp b/src/mame/act/victor9k.cpp
index 78aea9d39a7..dc952eb0f99 100644
--- a/src/mame/act/victor9k.cpp
+++ b/src/mame/act/victor9k.cpp
@@ -642,12 +642,12 @@ void victor9k_state::machine_start()
//update RAM for ramsize
int m_ram_size = m_ram->size();
- u8 *m_ram_ptr = m_ram->pointer();
+ u8 *m_ram_ptr = m_ram->pointer();
- int ramsize = m_ram_size;
+ int ramsize = m_ram_size;
if (ramsize > 0) {
address_space& space = m_maincpu->space(AS_PROGRAM);
- if (ramsize > 0xdffff) //the 896KB option overlaps 1 bit with
+ if (ramsize > 0xdffff) //the 896KB option overlaps 1 bit with
ramsize = 0xdffff; //the I/O memory space, truncating
if (LOG) logerror("install_ram ramsize %x\n", ramsize);
space.install_ram(0x0, ramsize, m_ram_ptr);
diff --git a/src/mame/apple/apple2gs.cpp b/src/mame/apple/apple2gs.cpp
index 4faea087db2..61f0a3809f3 100644
--- a/src/mame/apple/apple2gs.cpp
+++ b/src/mame/apple/apple2gs.cpp
@@ -373,10 +373,10 @@ private:
u8 b1ram4000_r(offs_t offset);
void b1ram4000_w(offs_t offset, u8 data);
- template<int addr> u8 e0ram_r(offs_t offset);
- template<int addr> void e0ram_w(offs_t offset, u8 data);
- template<int addr> u8 e1ram_r(offs_t offset);
- template<int addr> void e1ram_w(offs_t offset, u8 data);
+ template <int Addr> u8 e0ram_r(offs_t offset);
+ template <int Addr> void e0ram_w(offs_t offset, u8 data);
+ template <int Addr> u8 e1ram_r(offs_t offset);
+ template <int Addr> void e1ram_w(offs_t offset, u8 data);
u8 c000_r(offs_t offset);
void c000_w(offs_t offset, u8 data);
@@ -3815,17 +3815,17 @@ u8 apple2gs_state::read_floatingbus()
ADDRESS MAP
***************************************************************************/
-template<int addr>
-u8 apple2gs_state::e0ram_r(offs_t offset) { slow_cycle(); return m_megaii_ram[offset + addr]; }
+template <int Addr>
+u8 apple2gs_state::e0ram_r(offs_t offset) { slow_cycle(); return m_megaii_ram[offset + Addr]; }
-template<int addr>
-void apple2gs_state::e0ram_w(offs_t offset, u8 data) { slow_cycle(); m_megaii_ram[offset + addr] = data; }
+template <int Addr>
+void apple2gs_state::e0ram_w(offs_t offset, u8 data) { slow_cycle(); m_megaii_ram[offset + Addr] = data; }
-template<int addr>
-u8 apple2gs_state::e1ram_r(offs_t offset) { slow_cycle(); return m_megaii_ram[offset + addr + 0x10000]; }
+template <int Addr>
+u8 apple2gs_state::e1ram_r(offs_t offset) { slow_cycle(); return m_megaii_ram[offset + Addr + 0x10000]; }
-template<int addr>
-void apple2gs_state::e1ram_w(offs_t offset, u8 data) { slow_cycle(); m_megaii_ram[offset + addr + 0x10000] = data; }
+template <int Addr>
+void apple2gs_state::e1ram_w(offs_t offset, u8 data) { slow_cycle(); m_megaii_ram[offset + Addr + 0x10000] = data; }
template u8 apple2gs_state::e0ram_r<0x0000>(offs_t offset);
template u8 apple2gs_state::e0ram_r<0x0200>(offs_t offset);
diff --git a/src/mame/apple/lisa.cpp b/src/mame/apple/lisa.cpp
index 75badfdebef..91bf04173da 100644
--- a/src/mame/apple/lisa.cpp
+++ b/src/mame/apple/lisa.cpp
@@ -102,8 +102,8 @@ void lisa_state::lisa(machine_config &config)
/* devices */
IWM(config, m_fdc, 8_MHz_XTAL);
-// m_iwm->phases_cb().set(FUNC(mac128_state::phases_w));
-// m_iwm->devsel_cb().set(FUNC(mac128_state::devsel_w));
+// m_iwm->phases_cb().set(FUNC(mac128_state::phases_w));
+// m_iwm->devsel_cb().set(FUNC(mac128_state::devsel_w));
applefdintf_device::add_35(config, m_floppy[0]);
applefdintf_device::add_35(config, m_floppy[1]);
diff --git a/src/mame/facit/f4431.cpp b/src/mame/facit/f4431.cpp
index 0665a977130..e7b10e7be42 100644
--- a/src/mame/facit/f4431.cpp
+++ b/src/mame/facit/f4431.cpp
@@ -4,29 +4,29 @@
Facit 4431
- VT100 compatible terminal
+ VT100 compatible terminal
Hardware:
- Z80
- - TMS9927 CRTC
- - Z80A-DART
- - Z80A-CTC
- - ER1400
- - 6116
- - 6116 x2
- - 2114 x4
- - XTAL 9.828 MHz (B1), 14.976 MHz (B2), 4 MHz (B3)
- - AY-5-1013A UART
+ - TMS9927 CRTC
+ - Z80A-DART
+ - Z80A-CTC
+ - ER1400
+ - 6116
+ - 6116 x2
+ - 2114 x4
+ - XTAL 9.828 MHz (B1), 14.976 MHz (B2), 4 MHz (B3)
+ - AY-5-1013A UART
TODO:
- - Character attributes (RAM at 0xc000)
- - Cursor
- - 132 column mode
- - Smooth scrolling
- - Timings
- - Printer
- - Figure out why the EAROM hack is needed
- - Move ergo201 driver here? The hardware is very similar
+ - Character attributes (RAM at 0xc000)
+ - Cursor
+ - 132 column mode
+ - Smooth scrolling
+ - Timings
+ - Printer
+ - Figure out why the EAROM hack is needed
+ - Move ergo201 driver here? The hardware is very similar
Notes:
@@ -193,11 +193,11 @@ uint32_t f4431_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap,
// double height, bottom
if ((m_row_attr & 0x30) == 0x10)
line = line / 2 + 5;
-
+
// double height, top
if ((m_row_attr & 0x30) == 0x20)
line = line / 2;
-
+
if (BIT(m_row_attr, 4) || BIT(m_row_attr, 5) )
{
// double width
diff --git a/src/mame/facit/f4431_kbd.cpp b/src/mame/facit/f4431_kbd.cpp
index db7c6b1d9ed..e691ae2d1f6 100644
--- a/src/mame/facit/f4431_kbd.cpp
+++ b/src/mame/facit/f4431_kbd.cpp
@@ -5,11 +5,11 @@
Facit F4431 keyboard
TOOD:
- - Speaker sounds weird
- - Verify country codes
+ - Speaker sounds weird
+ - Verify country codes
Notes:
- - Also supports F4420 and F4430?
+ - Also supports F4420 and F4430?
- MCU P2 is never read?
***************************************************************************/
diff --git a/src/mame/ibm/rs6000_type7xxx.cpp b/src/mame/ibm/rs6000_type7xxx.cpp
index f2cc6524211..ba8aaa9aeb9 100755
--- a/src/mame/ibm/rs6000_type7xxx.cpp
+++ b/src/mame/ibm/rs6000_type7xxx.cpp
@@ -2,20 +2,20 @@
// copyright-holders:R. Belmont
/***************************************************************************
- rs6000_type7xxx.cpp - IBM RS/6000 PowerPC based MicroChannel systems
- Skeleton by R. Belmont
+ rs6000_type7xxx.cpp - IBM RS/6000 PowerPC based MicroChannel systems
+ Skeleton by R. Belmont
- Type 7009: PPC 601 @ 80 MHz, serial console, SCSI, 3-digit 7-segment display,
- 4 MCA slots, Ethernet, and a 2.88MB floppy with an unknown controller
+ Type 7009: PPC 601 @ 80 MHz, serial console, SCSI, 3-digit 7-segment display,
+ 4 MCA slots, Ethernet, and a 2.88MB floppy with an unknown controller
- The NetBSD boot log for a Type 7011 indicates the integrated SCSI is
- an NCR 53C720 appearing as an MCA board with the ID word 0x8fba.
- The "I/O planar" appears as an MCA board with the ID word 0x8f98 and
- it contains two NS16550A UARTs and an unknown Ethernet chip.
+ The NetBSD boot log for a Type 7011 indicates the integrated SCSI is
+ an NCR 53C720 appearing as an MCA board with the ID word 0x8fba.
+ The "I/O planar" appears as an MCA board with the ID word 0x8f98 and
+ it contains two NS16550A UARTs and an unknown Ethernet chip.
- References:
- https://www.ibm.com/common/ssi/ShowDoc.wss?docURL=/common/ssi/rep_sm/0/897/ENUS7009-C10/index.html&lang=en_US
- http://mail-index.netbsd.org/port-prep/2008/01/15/msg000001.html
+ References:
+ https://www.ibm.com/common/ssi/ShowDoc.wss?docURL=/common/ssi/rep_sm/0/897/ENUS7009-C10/index.html&lang=en_US
+ http://mail-index.netbsd.org/port-prep/2008/01/15/msg000001.html
************************************************************************/
@@ -68,6 +68,6 @@ ROM_START( rs6k7009 )
ROM_LOAD( "am27c040@dip32_ibm_7009_c10.bin", 0x000000, 0x080000, CRC(ff889bba) SHA1(b633584a0707913ac42ec127fcc567aa27d8af06) )
ROM_END
-} // anonymous namespace
+} // anonymous namespace
COMP( 1994, rs6k7009, 0, 0, type7009, type7009, type7xxx_state, empty_init, "International Business Machines", "RS/6000 Type 7009 Model C10 Server", MACHINE_NOT_WORKING|MACHINE_NO_SOUND_HW )
diff --git a/src/mame/konami/rockrage.cpp b/src/mame/konami/rockrage.cpp
index 2813e1970e5..fc56da1806c 100644
--- a/src/mame/konami/rockrage.cpp
+++ b/src/mame/konami/rockrage.cpp
@@ -396,5 +396,5 @@ ROM_END
// YEAR, NAME, PARENT, MACHINE, INPUT, INIT,MONITOR,COMPANY,FULLNAME,FLAGS
GAME( 1986, rockrage, 0, rockrage, rockrage, rockrage_state, empty_init, ROT0, "Konami", "Rock'n Rage (World)", MACHINE_SUPPORTS_SAVE )
-GAME( 1986, rockragea, rockrage, rockrage, rockrage, rockrage_state, empty_init, ROT0, "Konami", "Rock'n Rage (prototype?)", MACHINE_SUPPORTS_SAVE ) // no title screen, abruptly cuts off ending before the "presented by Konami" seen in other sets, location test?
+GAME( 1986, rockragea, rockrage, rockrage, rockrage, rockrage_state, empty_init, ROT0, "Konami", "Rock'n Rage (prototype?)", MACHINE_SUPPORTS_SAVE ) // no title screen, abruptly cuts off ending before the "presented by Konami" seen in other sets, location test?
GAME( 1986, rockragej, rockrage, rockrage, rockrage, rockrage_state, empty_init, ROT0, "Konami", "Koi no Hotrock (Japan)", MACHINE_SUPPORTS_SAVE )
diff --git a/src/mame/layout/f4431.lay b/src/mame/layout/f4431.lay
index d8fc03b5296..3abf86a9c9b 100644
--- a/src/mame/layout/f4431.lay
+++ b/src/mame/layout/f4431.lay
@@ -7,7 +7,7 @@ Facit 4431 layout
-->
<mamelayout version="2">
-
+
<element name="led" defstate="0">
<disk state="0">
<color red="0" green="0.2" blue="0" />
@@ -16,7 +16,7 @@ Facit 4431 layout
<color red="0" green="0.8" blue="0" />
</disk>
</element>
-
+
<element name="text_KEYBOARD"><text string="KEYBOARD"><color red="0.80" green="0.80" blue="0.80" /></text></element>
<element name="text_ONLINE"><text string="ON LINE"><color red="0.80" green="0.80" blue="0.80" /></text></element>
diff --git a/src/mame/misc/mtu130.cpp b/src/mame/misc/mtu130.cpp
index f5f0bdad3b1..5a89d8c1d1e 100644
--- a/src/mame/misc/mtu130.cpp
+++ b/src/mame/misc/mtu130.cpp
@@ -120,7 +120,7 @@ private:
u8 m_sadr, m_write_count, m_banks;
memory_access<18, 0, 0, ENDIANNESS_LITTLE>::specific m_program;
-
+
const u8 *m_sequencer;
memory_interface(const u8 *sequencer, address_space &space);
@@ -249,7 +249,7 @@ void mtu130_rom_device::call_unload()
mtu130_state::memory_interface::memory_interface(const u8 *sequencer, address_space &space) : m_sadr(0), m_write_count(0), m_banks(0), m_sequencer(sequencer)
{
space.specific(m_program);
-}
+}
u32 mtu130_state::memory_interface::banked_address(u16 adr, u8 sadr) const
{
@@ -310,7 +310,7 @@ u8 mtu130_state::memory_interface::read(u16 adr)
m_write_count = 0;
m_sadr = sadr;
return data;
-}
+}
u8 mtu130_state::memory_interface::read_arg(u16 adr)
{
@@ -451,7 +451,7 @@ WRITE_LINE_MEMBER(mtu130_state::dma_drq_w)
u8 data = m_fdc->dma_r();
m_fdcram[m_dma_adr & 0x3fff] = data;
m_dma_adr ++;
-
+
} else {
// Write to floppy
u8 data = m_fdcram[m_dma_adr & 0x3fff];
diff --git a/src/mame/psikyo/psikyosh.cpp b/src/mame/psikyo/psikyosh.cpp
index e862db1d99e..c80b7a2b7e4 100644
--- a/src/mame/psikyo/psikyosh.cpp
+++ b/src/mame/psikyo/psikyosh.cpp
@@ -1352,7 +1352,7 @@ GAME( 1998, sbombera, sbomber, psikyo3v1, sbomber, psikyosh_state, in
GAME( 1998, gunbird2, 0, psikyo5, gunbird2, psikyosh_state, init_ps5, ROT270, "Psikyo", "Gunbird 2 (set 1)", MACHINE_NO_COCKTAIL | MACHINE_SUPPORTS_SAVE )
GAME( 1998, gunbird2a, gunbird2, psikyo5, gunbird2, psikyosh_state, init_ps5, ROT270, "Psikyo", "Gunbird 2 (set 2)", MACHINE_NO_COCKTAIL | MACHINE_SUPPORTS_SAVE )
GAME( 1999, s1945iii, 0, psikyo5, s1945iii, psikyosh_state, init_ps5, ROT270, "Psikyo", "Strikers 1945 III (World) / Strikers 1999 (Japan)", MACHINE_NO_COCKTAIL | MACHINE_SUPPORTS_SAVE )
-GAME( 1999, s1945iiibl, s1945iii, s1945iiibl, s1945iii, psikyosh_state, init_s1945iiibl, ROT270, "bootleg", "Strikers 1945 III (World) / Strikers 1999 (Japan) (bootleg)", MACHINE_NOT_WORKING | MACHINE_NO_COCKTAIL | MACHINE_SUPPORTS_SAVE ) // sprites don't show up in
+GAME( 1999, s1945iiibl, s1945iii, s1945iiibl, s1945iii, psikyosh_state, init_s1945iiibl, ROT270, "bootleg", "Strikers 1945 III (World) / Strikers 1999 (Japan) (bootleg)", MACHINE_NOT_WORKING | MACHINE_NO_COCKTAIL | MACHINE_SUPPORTS_SAVE ) // sprites don't show up in
/* ps5v2 */
GAME( 2000, dragnblz, 0, psikyo5, dragnblz, psikyosh_state, init_ps5, ROT270, "Psikyo", "Dragon Blaze", MACHINE_NO_COCKTAIL | MACHINE_SUPPORTS_SAVE )