summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-04-22 09:24:13 +1000
committer Vas Crabb <vas@vastheman.com>2018-04-22 09:24:13 +1000
commitac79c9060733a5db9703bb39af3224ecc7b5bd7d (patch)
tree397ae99da2388578923a93b7d6f069b4ae28723b /src/mame/drivers
parent137969abf59bcf443d037cdfc810c9b65af554ba (diff)
srcclean (nw)
Diffstat (limited to 'src/mame/drivers')
-rw-r--r--src/mame/drivers/aleck64.cpp16
-rw-r--r--src/mame/drivers/alesis.cpp32
-rw-r--r--src/mame/drivers/atarisy2.cpp38
-rw-r--r--src/mame/drivers/bionicc.cpp16
-rw-r--r--src/mame/drivers/coolpool.cpp6
-rw-r--r--src/mame/drivers/cosmicos.cpp4
-rw-r--r--src/mame/drivers/djboy.cpp2
-rw-r--r--src/mame/drivers/dreamwld.cpp2
-rw-r--r--src/mame/drivers/firefox.cpp2
-rw-r--r--src/mame/drivers/gaelco2.cpp2
-rw-r--r--src/mame/drivers/galivan.cpp4
-rw-r--r--src/mame/drivers/goldstar.cpp4
-rw-r--r--src/mame/drivers/hp9k_3xx.cpp2
-rw-r--r--src/mame/drivers/hvyunit.cpp2
-rw-r--r--src/mame/drivers/konblands.cpp8
-rw-r--r--src/mame/drivers/legionna.cpp6
-rw-r--r--src/mame/drivers/model1.cpp6
-rw-r--r--src/mame/drivers/model2.cpp6
-rw-r--r--src/mame/drivers/prodigy.cpp2
-rw-r--r--src/mame/drivers/rad_eu3a14.cpp4
-rw-r--r--src/mame/drivers/sg1000.cpp12
-rw-r--r--src/mame/drivers/slapshot.cpp2
-rw-r--r--src/mame/drivers/smc777.cpp2
-rw-r--r--src/mame/drivers/splus.cpp2
-rw-r--r--src/mame/drivers/ssv.cpp2
-rw-r--r--src/mame/drivers/symbolics.cpp2
-rw-r--r--src/mame/drivers/system16.cpp18
-rw-r--r--src/mame/drivers/taitottl.cpp30
-rw-r--r--src/mame/drivers/tecmo.cpp14
-rw-r--r--src/mame/drivers/tigeroad.cpp4
-rw-r--r--src/mame/drivers/vii.cpp4
-rw-r--r--src/mame/drivers/vp415.cpp72
-rw-r--r--src/mame/drivers/warpwarp.cpp12
-rw-r--r--src/mame/drivers/xavix.cpp2
34 files changed, 171 insertions, 171 deletions
diff --git a/src/mame/drivers/aleck64.cpp b/src/mame/drivers/aleck64.cpp
index b4ed3c70d57..e8c52ad6769 100644
--- a/src/mame/drivers/aleck64.cpp
+++ b/src/mame/drivers/aleck64.cpp
@@ -948,9 +948,9 @@ MACHINE_CONFIG_END
uint32_t aleck64_state::screen_update_e90(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
{
bitmap.fill(0, cliprect);
- screen_update_n64(screen,bitmap,cliprect);
+ screen_update_n64(screen,bitmap,cliprect);
// TODO: extract from the real tables (maybe RLEd inside paletteram words 0xa - 0xf?)
- static constexpr u8 pal_table[8*8] =
+ static constexpr u8 pal_table[8*8] =
{
8, 6, 6, 6, 6, 5, 4, 3,
9, 7, 5, 6, 4, 1, 1, 4,
@@ -961,7 +961,7 @@ uint32_t aleck64_state::screen_update_e90(screen_device &screen, bitmap_rgb32 &b
9, 8, 8, 8, 8, 8, 7, 6,
8, 9, 9, 9, 9, 9, 9, 8
};
-
+
for(int offs=0;offs<0x1000/4;offs+=2)
{
int xi,yi;
@@ -970,14 +970,14 @@ uint32_t aleck64_state::screen_update_e90(screen_device &screen, bitmap_rgb32 &b
int pal_shift;
// 0x400 is another enable? end code if off?
//uint16_t tile = m_e90_vram[offs] >> 16;
-
- // TODO: mask 0x300 on tile seems to be tile number
+
+ // TODO: mask 0x300 on tile seems to be tile number
// (active piece drawn with 0x100, special square blocks drawn with cycling 0x1c0, 0x200 & 0x240)
uint16_t attr = m_e90_vram[offs] & 0xffff;
// bit 5 disables?
if(attr & 0x20)
continue;
-
+
// guess: 0x1000 entries / word / 4bpp = 0x7f, divided by two below
// bits 5 and 6 of palette bank seems to be highlight and shadow, separated from this bank
uint16_t pal = (attr & 0x06) >> 1;
@@ -987,7 +987,7 @@ uint32_t aleck64_state::screen_update_e90(screen_device &screen, bitmap_rgb32 &b
// ghost piece, probably enabled thru one bit of these (as weird as it sounds)
if((y & 0xff00) == 0xbc00)
pal |= (0x40 >> 1);
-
+
// color banks
// some pieces needs this color adjustment (see T piece / 5 block version of I piece)
pal |= (attr & 0xc0) >> 4;
@@ -1011,7 +1011,7 @@ uint32_t aleck64_state::screen_update_e90(screen_device &screen, bitmap_rgb32 &b
r = pal5bit(r);
g = pal5bit(g);
b = pal5bit(b);
-
+
if(cliprect.contains(res_x, res_y))
bitmap.pix32(res_y, res_x) = r << 16 | g << 8 | b;
}
diff --git a/src/mame/drivers/alesis.cpp b/src/mame/drivers/alesis.cpp
index 0e6a83f7ca2..3a38080460d 100644
--- a/src/mame/drivers/alesis.cpp
+++ b/src/mame/drivers/alesis.cpp
@@ -45,15 +45,15 @@ READ8_MEMBER( alesis_state::kb_r )
WRITE8_MEMBER( alesis_state::led_w )
{
- m_patt_led = BIT(data, 0) ? 1 : 0;
- m_song_led = BIT(data, 0) ? 0 : 1;
- m_play_led = BIT(data, 1) ? 0 : 1;
- m_record_led = BIT(data, 2) ? 0 : 1;
- m_voice_led = BIT(data, 3) ? 0 : 1;
- m_tune_led = BIT(data, 4) ? 0 : 1;
- m_mix_led = BIT(data, 5) ? 0 : 1;
- m_tempo_led = BIT(data, 6) ? 0 : 1;
- m_midi_led = BIT(data, 7) ? 0 : 1;
+ m_patt_led = BIT(data, 0) ? 1 : 0;
+ m_song_led = BIT(data, 0) ? 0 : 1;
+ m_play_led = BIT(data, 1) ? 0 : 1;
+ m_record_led = BIT(data, 2) ? 0 : 1;
+ m_voice_led = BIT(data, 3) ? 0 : 1;
+ m_tune_led = BIT(data, 4) ? 0 : 1;
+ m_mix_led = BIT(data, 5) ? 0 : 1;
+ m_tempo_led = BIT(data, 6) ? 0 : 1;
+ m_midi_led = BIT(data, 7) ? 0 : 1;
}
READ8_MEMBER( alesis_state::p3_r )
@@ -77,13 +77,13 @@ WRITE8_MEMBER( alesis_state::sr16_lcd_w )
WRITE8_MEMBER( alesis_state::mmt8_led_w )
{
- m_play_led = BIT(data, 0) ? 0 : 1;
- m_record_led = BIT(data, 1) ? 0 : 1;
- m_part_led = BIT(data, 2) ? 0 : 1;
- m_edit_led = BIT(data, 3) ? 0 : 1;
- m_song_led = BIT(data, 4) ? 0 : 1;
- m_echo_led = BIT(data, 5) ? 0 : 1;
- m_loop_led = BIT(data, 6) ? 0 : 1;
+ m_play_led = BIT(data, 0) ? 0 : 1;
+ m_record_led = BIT(data, 1) ? 0 : 1;
+ m_part_led = BIT(data, 2) ? 0 : 1;
+ m_edit_led = BIT(data, 3) ? 0 : 1;
+ m_song_led = BIT(data, 4) ? 0 : 1;
+ m_echo_led = BIT(data, 5) ? 0 : 1;
+ m_loop_led = BIT(data, 6) ? 0 : 1;
m_leds = data;
}
diff --git a/src/mame/drivers/atarisy2.cpp b/src/mame/drivers/atarisy2.cpp
index dd3b9c8c647..d59e37fdb0b 100644
--- a/src/mame/drivers/atarisy2.cpp
+++ b/src/mame/drivers/atarisy2.cpp
@@ -1432,9 +1432,9 @@ ROM_END
Paperboy prototype pcb
-brown in colour, A042571-01 rev 2
+brown in colour, A042571-01 rev 2
handwritten in red '#10'
-sticky label with '10' on it.
+sticky label with '10' on it.
Had a tag attatched saying 'suspect reset problem'
SOUND section:
@@ -1444,9 +1444,9 @@ There is a 6502 next to the quad pokey. 3 roms are nearby, with the naming conve
CPU section:
one empty 40pin socket, looks like the main cpu.
-There are no designations for IC location, only a
+There are no designations for IC location, only a
handwritten column of letters to denote the left/right.
-I am guessing at the up/down by making up my own numbers,
+I am guessing at the up/down by making up my own numbers,
as atari used to start the numbers from furthest away from the edge connector first.
All IC's and components on this pcb are hand soldered-in
@@ -1456,21 +1456,21 @@ So bear this in mind, there may be a few bytes out here and there.
*********************************************************************************************
-Label Loc. Type File
-FIX-LOW CA50 5P 27128 fix-low.bin
-FIX-HI 0AB3 5M 27128 fix-hi.bin
-L-0 208E 7T 27128 l-0.bin
-H-0 9C75 6T 27128 h-0.bin
-PAGROM L-1 6R/S 27128 pagroml-1.bin
-H-1 5T 27128 h-1.bin
-PAGROM L-2 7R/S 27128 pagroml-2.bin
-PAGROM H-2 4T 27128 pagromh-2.bin
-LOW-3 5R/S 27128 low-3.bin
-HI-3 4R/S 27128 hi-3.bin
-
-PAPTST 4000 2A 27128 paptst4000.bin
-PAPTST 8000 2C 27128 paptst8000.bin
-PAPTST c000 2G 27128 paptstc000.bin
+Label Loc. Type File
+FIX-LOW CA50 5P 27128 fix-low.bin
+FIX-HI 0AB3 5M 27128 fix-hi.bin
+L-0 208E 7T 27128 l-0.bin
+H-0 9C75 6T 27128 h-0.bin
+PAGROM L-1 6R/S 27128 pagroml-1.bin
+H-1 5T 27128 h-1.bin
+PAGROM L-2 7R/S 27128 pagroml-2.bin
+PAGROM H-2 4T 27128 pagromh-2.bin
+LOW-3 5R/S 27128 low-3.bin
+HI-3 4R/S 27128 hi-3.bin
+
+PAPTST 4000 2A 27128 paptst4000.bin
+PAPTST 8000 2C 27128 paptst8000.bin
+PAPTST c000 2G 27128 paptstc000.bin
*/
diff --git a/src/mame/drivers/bionicc.cpp b/src/mame/drivers/bionicc.cpp
index 81dc99907a9..61deab85372 100644
--- a/src/mame/drivers/bionicc.cpp
+++ b/src/mame/drivers/bionicc.cpp
@@ -54,14 +54,14 @@
- see the beginning of level 3: background screwed
- gray tiles around the title in Top Secret
- Note: The MCU rom contains the string
- "<for dealer-location test & USA show. 87/03/10 >"
- which indicates it could be from an earlier version, especially with it
- coming from a 'Top Secret' bootleg with identical program but unprotected
- MCU, however f1dream has a similar string, and is verified as being from
- a production board.
+ Note: The MCU rom contains the string
+ "<for dealer-location test & USA show. 87/03/10 >"
+ which indicates it could be from an earlier version, especially with it
+ coming from a 'Top Secret' bootleg with identical program but unprotected
+ MCU, however f1dream has a similar string, and is verified as being from
+ a production board.
- The MCU hookup is currently wrong, maybe IRQ4 related?
+ The MCU hookup is currently wrong, maybe IRQ4 related?
ToDo:
IRQ4 seems to be control related.
@@ -103,7 +103,7 @@ WRITE8_MEMBER(bionicc_state::mcu_shared_w)
}
WRITE8_MEMBER(bionicc_state::out1_w)
-{
+{
m_soundlatch->write(space,0,data);
}
diff --git a/src/mame/drivers/coolpool.cpp b/src/mame/drivers/coolpool.cpp
index 02f0c11ab16..a0f695cf5a3 100644
--- a/src/mame/drivers/coolpool.cpp
+++ b/src/mame/drivers/coolpool.cpp
@@ -730,7 +730,7 @@ MACHINE_CONFIG_START(coolpool_state::amerdart)
MCFG_CPU_IO_MAP(amerdart_dsp_io_map)
MCFG_TMS32010_BIO_IN_CB(READLINE(coolpool_state, amerdart_dsp_bio_line_r))
MCFG_TIMER_DRIVER_ADD_SCANLINE("audioint", coolpool_state, amerdart_audio_int_gen, "screen", 0, 1)
-
+
MCFG_GENERIC_LATCH_16_ADD("main2dsp")
MCFG_GENERIC_LATCH_16_ADD("dsp2main")
MCFG_GENERIC_LATCH_DATA_PENDING_CB(INPUTLINE("maincpu", 1))
@@ -774,8 +774,8 @@ MACHINE_CONFIG_START(coolpool_state::coolpool)
MCFG_GENERIC_LATCH_16_ADD("main2dsp")
MCFG_GENERIC_LATCH_DATA_PENDING_CB(INPUTLINE("dsp", 0)) /* ??? I have no idea who should generate this! */
- /* the DSP polls the status bit so it isn't strictly */
- /* necessary to also have an IRQ */
+ /* the DSP polls the status bit so it isn't strictly */
+ /* necessary to also have an IRQ */
MCFG_GENERIC_LATCH_16_ADD("dsp2main")
MCFG_GENERIC_LATCH_DATA_PENDING_CB(INPUTLINE("maincpu", 1))
diff --git a/src/mame/drivers/cosmicos.cpp b/src/mame/drivers/cosmicos.cpp
index c304bbb67eb..4f4b86ee500 100644
--- a/src/mame/drivers/cosmicos.cpp
+++ b/src/mame/drivers/cosmicos.cpp
@@ -360,9 +360,9 @@ TIMER_DEVICE_CALLBACK_MEMBER(cosmicos_state::digit_tick)
{
// commented this out because (a) m_digit isn't initialised anywhere,
// and (b) writing to a negative digit is not a good idea.
-// m_digit = !m_digit;
+// m_digit = !m_digit;
-// m_digits[m_digit] = m_segment;
+// m_digits[m_digit] = m_segment;
}
TIMER_DEVICE_CALLBACK_MEMBER(cosmicos_state::int_tick)
diff --git a/src/mame/drivers/djboy.cpp b/src/mame/drivers/djboy.cpp
index 7ce2c287d26..fa061217d6e 100644
--- a/src/mame/drivers/djboy.cpp
+++ b/src/mame/drivers/djboy.cpp
@@ -507,7 +507,7 @@ MACHINE_CONFIG_START(djboy_state::djboy)
MCFG_MCS51_PORT_P3_OUT_CB(WRITE8(djboy_state, beast_p3_w))
MCFG_QUANTUM_TIME(attotime::from_hz(6000))
-
+
MCFG_GENERIC_LATCH_8_ADD("slavelatch")
MCFG_GENERIC_LATCH_8_ADD("beastlatch")
diff --git a/src/mame/drivers/dreamwld.cpp b/src/mame/drivers/dreamwld.cpp
index 1954bb167ba..0d4d7a2ecad 100644
--- a/src/mame/drivers/dreamwld.cpp
+++ b/src/mame/drivers/dreamwld.cpp
@@ -277,7 +277,7 @@ void dreamwld_state::video_start()
m_tilemap[layer][size]->set_scroll_cols(1);
}
}
-
+
m_spritebuf[0] = std::make_unique<uint32_t[]>(0x2000 / 4);
m_spritebuf[1] = std::make_unique<uint32_t[]>(0x2000 / 4);
m_lineram16 = make_unique_clear<uint16_t[]>(0x400 / 2);
diff --git a/src/mame/drivers/firefox.cpp b/src/mame/drivers/firefox.cpp
index 174e11191cb..afc039e602e 100644
--- a/src/mame/drivers/firefox.cpp
+++ b/src/mame/drivers/firefox.cpp
@@ -133,7 +133,7 @@ private:
required_device<x2212_device> m_nvram_1d;
required_memory_bank m_mainbank;
-
+
output_finder<4> m_leds;
int m_n_disc_lock;
diff --git a/src/mame/drivers/gaelco2.cpp b/src/mame/drivers/gaelco2.cpp
index 04202f44b5c..ccc3d0ddf9e 100644
--- a/src/mame/drivers/gaelco2.cpp
+++ b/src/mame/drivers/gaelco2.cpp
@@ -1354,7 +1354,7 @@ REF: 950906
| | | TG IC67.IC67 |P|
| 6264 |----------| |6|
| 6264 IC68* | |
-| J | |
+| J | |
| A |-------------------------| TG IC69.IC69 |-|
| M | | |
| M | 62256 DS5002 BATT_3V | |
diff --git a/src/mame/drivers/galivan.cpp b/src/mame/drivers/galivan.cpp
index 498b493e95e..f9560441027 100644
--- a/src/mame/drivers/galivan.cpp
+++ b/src/mame/drivers/galivan.cpp
@@ -483,7 +483,7 @@ MACHINE_CONFIG_START(dangarj_state::dangarj)
galivan(config);
MCFG_CPU_MODIFY("maincpu")
MCFG_CPU_IO_MAP(dangarj_io_map)
-
+
MCFG_DEVICE_ADD("prot_chip", NB1412M2, XTAL(8'000'000)) // divided by 2 maybe
MACHINE_CONFIG_END
@@ -1209,7 +1209,7 @@ GAME( 1986, dangar, 0, galivan, dangar, galivan_state, 0, ROT27
GAME( 1986, dangara, dangar, galivan, dangar2, galivan_state, 0, ROT270, "Nichibutsu", "Ufo Robo Dangar (12/1/1986)", MACHINE_SUPPORTS_SAVE )
GAME( 1986, dangarj, dangar, dangarj, dangar2, dangarj_state, 0, ROT270, "Nichibutsu", "Ufo Robo Dangar (9/26/1986, Japan)", MACHINE_SUPPORTS_SAVE|MACHINE_IMPERFECT_SOUND ) // wrong BGM in game, no SFXs
GAME( 1986, dangarb, dangar, galivan, dangar2, galivan_state, 0, ROT270, "Nichibutsu", "Ufo Robo Dangar (9/26/1986, bootleg set 1)", MACHINE_SUPPORTS_SAVE ) // checks protection like dangarj but check readback is patched at 0x9d58 (also checks i/o port 0xc0?)
-GAME( 1986, dangarbt, dangar, galivan, dangarb, galivan_state, 0, ROT270, "bootleg", "Ufo Robo Dangar (9/26/1986, bootleg set 2)", MACHINE_SUPPORTS_SAVE ) // directly patched at entry point 0x9d44
+GAME( 1986, dangarbt, dangar, galivan, dangarb, galivan_state, 0, ROT270, "bootleg", "Ufo Robo Dangar (9/26/1986, bootleg set 2)", MACHINE_SUPPORTS_SAVE ) // directly patched at entry point 0x9d44
GAME( 1986, ninjemak, 0, ninjemak, ninjemak, galivan_state, 0, ROT270, "Nichibutsu", "Ninja Emaki (US)", MACHINE_SUPPORTS_SAVE|MACHINE_UNEMULATED_PROTECTION )
GAME( 1986, youma, ninjemak, ninjemak, ninjemak, galivan_state, 0, ROT270, "Nichibutsu", "Youma Ninpou Chou (Japan)", MACHINE_SUPPORTS_SAVE|MACHINE_UNEMULATED_PROTECTION )
GAME( 1986, youma2, ninjemak, ninjemak, ninjemak, galivan_state, 0, ROT270, "Nichibutsu", "Youma Ninpou Chou (Japan, alt)", MACHINE_SUPPORTS_SAVE|MACHINE_UNEMULATED_PROTECTION )
diff --git a/src/mame/drivers/goldstar.cpp b/src/mame/drivers/goldstar.cpp
index 6356fc567e9..e304503bda3 100644
--- a/src/mame/drivers/goldstar.cpp
+++ b/src/mame/drivers/goldstar.cpp
@@ -10791,7 +10791,7 @@ ROM_START( jkrmast )
ROM_REGION( 0x20000, "gfx1", 0 )
ROM_LOAD( "2000b.u48", 0x00000, 0x20000, CRC(e7b406ec) SHA1(c0a10cf8bf5467ecfe3c90e6897db3ab9aae0127) )
-
+
ROM_REGION( 0x20000, "gfx2", 0 )
ROM_LOAD( "2000a.u41", 0x00000, 0x20000, CRC(cb8b1563) SHA1(c8c3ae646a9f3a7482d83566e4b3e18441c5d67f) )
@@ -10808,7 +10808,7 @@ ROM_START( jkrmasta )
ROM_REGION( 0x20000, "gfx1", 0 )
ROM_LOAD( "2000b.u48", 0x00000, 0x20000, CRC(e7b406ec) SHA1(c0a10cf8bf5467ecfe3c90e6897db3ab9aae0127) )
-
+
ROM_REGION( 0x20000, "gfx2", 0 )
ROM_LOAD( "2000a.u41", 0x00000, 0x20000, CRC(cb8b1563) SHA1(c8c3ae646a9f3a7482d83566e4b3e18441c5d67f) )
diff --git a/src/mame/drivers/hp9k_3xx.cpp b/src/mame/drivers/hp9k_3xx.cpp
index 7b8deade4d6..1e9c07c1fe2 100644
--- a/src/mame/drivers/hp9k_3xx.cpp
+++ b/src/mame/drivers/hp9k_3xx.cpp
@@ -319,7 +319,7 @@ READ16_MEMBER(hp9k3xx_state::buserror16_r)
{
m_maincpu->set_input_line(M68K_LINE_BUSERROR, ASSERT_LINE);
m_maincpu->set_input_line(M68K_LINE_BUSERROR, CLEAR_LINE);
- m_lastpc = machine().device<cpu_device>("maincpu")->pc();
+ m_lastpc = machine().device<cpu_device>("maincpu")->pc();
return 0;
}
diff --git a/src/mame/drivers/hvyunit.cpp b/src/mame/drivers/hvyunit.cpp
index 0dad3072b2f..4b62abc8f0c 100644
--- a/src/mame/drivers/hvyunit.cpp
+++ b/src/mame/drivers/hvyunit.cpp
@@ -111,7 +111,7 @@ public:
required_device<generic_latch_8_device> m_soundlatch;
required_device<generic_latch_8_device> m_mermaidlatch;
required_device<generic_latch_8_device> m_slavelatch;
-
+
required_memory_bank m_masterbank;
required_memory_bank m_slavebank;
required_memory_bank m_soundbank;
diff --git a/src/mame/drivers/konblands.cpp b/src/mame/drivers/konblands.cpp
index 657cc362699..518c9936607 100644
--- a/src/mame/drivers/konblands.cpp
+++ b/src/mame/drivers/konblands.cpp
@@ -186,7 +186,7 @@ void konblands_state::konblandsh_map(address_map &map)
static INPUT_PORTS_START( konblands )
PORT_START("DSW1")
- PORT_DIPNAME( 0xff, 0xff, DEF_STR( Coinage ) ) PORT_DIPLOCATION("DSW1:1,2,3,4,5,6,7,8")
+ PORT_DIPNAME( 0xff, 0xff, DEF_STR( Coinage ) ) PORT_DIPLOCATION("DSW1:1,2,3,4,5,6,7,8")
PORT_DIPSETTING( 0x22, DEF_STR( 4C_1C ) )
PORT_DIPSETTING( 0x55, DEF_STR( 3C_1C ) )
PORT_DIPSETTING( 0x88, DEF_STR( 2C_1C ) )
@@ -205,18 +205,18 @@ static INPUT_PORTS_START( konblands )
PORT_DIPSETTING( 0x00, DEF_STR( Free_Play ) )
PORT_START("DSW2")
- PORT_DIPNAME( 0x03, 0x02, DEF_STR( Lives ) ) PORT_DIPLOCATION("DSW2:1,2")
+ PORT_DIPNAME( 0x03, 0x02, DEF_STR( Lives ) ) PORT_DIPLOCATION("DSW2:1,2")
PORT_DIPSETTING( 0x03, "2")
PORT_DIPSETTING( 0x02, "3")
PORT_DIPSETTING( 0x01, "5")
PORT_DIPSETTING( 0x00, "7")
- /* SW3-SW7 NOT IN USE. Keep switches in OFF position (per manual) */
+ /* SW3-SW7 NOT IN USE. Keep switches in OFF position (per manual) */
PORT_DIPUNUSED_DIPLOC( 0x04, 0x04, "DSW2:3" )
PORT_DIPUNUSED_DIPLOC( 0x08, 0x08, "DSW2:4" )
PORT_DIPUNUSED_DIPLOC( 0x10, 0x10, "DSW2:5" )
PORT_DIPUNUSED_DIPLOC( 0x20, 0x20, "DSW2:6" )
PORT_DIPUNUSED_DIPLOC( 0x40, 0x40, "DSW2:7" )
- PORT_DIPNAME( 0x80, 0x00, DEF_STR( Demo_Sounds ) ) PORT_DIPLOCATION("DSW2:8")
+ PORT_DIPNAME( 0x80, 0x00, DEF_STR( Demo_Sounds ) ) PORT_DIPLOCATION("DSW2:8")
PORT_DIPSETTING( 0x80, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
diff --git a/src/mame/drivers/legionna.cpp b/src/mame/drivers/legionna.cpp
index b52b243f60c..456ad6ce03b 100644
--- a/src/mame/drivers/legionna.cpp
+++ b/src/mame/drivers/legionna.cpp
@@ -270,8 +270,8 @@ void legionna_state::godzilla_map(address_map &map)
map(0x106800, 0x106fff).ram();
map(0x107000, 0x107fff).ram(); /*Ani-DSP ram*/
map(0x108000, 0x11ffff).ram();
-// map(0xff0000, 0xffffff).ram(); // game reads here at Biollante stage in story mode (i.e. when Super X starts shooting).
- // Development leftover/coding bug? Game doesn't seem to care at all anyway.
+// map(0xff0000, 0xffffff).ram(); // game reads here at Biollante stage in story mode (i.e. when Super X starts shooting).
+ // Development leftover/coding bug? Game doesn't seem to care at all anyway.
}
// additional z80 i/o port, present only in Godzilla (512KB OKI ROM vs 256KB)
@@ -290,7 +290,7 @@ void legionna_state::godzilla_sound_io_map(address_map &map)
map(0x00, 0x00).w(this, FUNC(legionna_state::godzilla_oki_bank_w));
}
-// Denjin Makai: Looks like they specifically swapped address line A1 in this range?
+// Denjin Makai: Looks like they specifically swapped address line A1 in this range?
// Initially thought it was a palette DMA mode 4 but it doesn't apply for Godzilla, causing color bugs in the background tilemap.
WRITE16_MEMBER(legionna_state::palette_swap_w)
{
diff --git a/src/mame/drivers/model1.cpp b/src/mame/drivers/model1.cpp
index d6a40ee1b67..f0b5777a256 100644
--- a/src/mame/drivers/model1.cpp
+++ b/src/mame/drivers/model1.cpp
@@ -1067,15 +1067,15 @@ INPUT_PORTS_END
ROM_REGION32_LE( 0x40000, "copro_tables", 0 ) \
ROM_LOAD32_WORD("opr14742.bin", 0x000000, 0x20000, CRC(446a1085) SHA1(51b3f4d3a35a36087ea0ba4e26d6e7d17b6418e2) ) \
ROM_LOAD32_WORD("opr14743.bin", 0x000002, 0x20000, CRC(e8953554) SHA1(1499f8e30ac15affc66e6f04ae031bb8680d9260) ) \
- \
+ \
ROM_REGION32_LE( 0x80000, "other_data", 0 ) \
- /* 1/x table */ \
+ /* 1/x table */ \
ROM_LOAD32_WORD("opr-14744.58", 0x000000, 0x20000, CRC(730ea9e0) SHA1(651f1db4089a400d073b19ada299b4b08b08f372) ) \
ROM_LOAD32_WORD("opr-14745.59", 0x000002, 0x20000, CRC(4c934d96) SHA1(e3349ece0e47f684d61ad11bfea4a90602287350) ) \
/* 1/sqrt(x) table */ \
ROM_LOAD32_WORD("opr-14746.62", 0x040000, 0x20000, CRC(2a266cbd) SHA1(34e047a93459406c22acf4c25089d1a4955f94ca) ) \
ROM_LOAD32_WORD("opr-14747.63", 0x040002, 0x20000, CRC(a4ad5e19) SHA1(7d7ec300eeb9a8de1590011e37108688c092f329) ) \
- \
+ \
ROM_REGION16_LE( 0x20000, "other_other_data", 0 ) \
/* 1/(1+x) again, but bottom 16 bits only */ \
ROM_LOAD("opr14748.bin", 0x000000, 0x20000, CRC(4a532cb8) SHA1(23280ebbcd6b2bc8a8e643a2d07a58d6598301b8) ) \
diff --git a/src/mame/drivers/model2.cpp b/src/mame/drivers/model2.cpp
index 251e4b755f0..ed5585b06ed 100644
--- a/src/mame/drivers/model2.cpp
+++ b/src/mame/drivers/model2.cpp
@@ -2955,12 +2955,12 @@ OPR-14747 / Linked to 315-5679B
// TODO: roms 58/59 and 62/63 aren't really used so far, actually they should be 32_word loaded too?
// the 'a' versions have the atan table fixed compared to model 1
#define MODEL2_CPU_BOARD \
- ROM_REGION32_LE( 0x40000, "copro_tgp_tables", 0 ) \
+ ROM_REGION32_LE( 0x40000, "copro_tgp_tables", 0 ) \
ROM_LOAD32_WORD("opr-14742a.45", 0x000000, 0x20000, CRC(90c6b117) SHA1(f46429fffcee17d056f56d5fe035a33f1fd6c27e) ) \
ROM_LOAD32_WORD("opr-14743a.46", 0x000002, 0x20000, CRC(ae7f446b) SHA1(5b9f1fc47caf21e061e930c0d72804e4ec8c7bca) ) \
- \
+ \
ROM_REGION32_LE( 0x80000, "other_data", 0 ) \
- /* 1/x table */ \
+ /* 1/x table */ \
ROM_LOAD32_WORD("opr-14744.58", 0x000000, 0x20000, CRC(730ea9e0) SHA1(651f1db4089a400d073b19ada299b4b08b08f372) ) \
ROM_LOAD32_WORD("opr-14745.59", 0x000002, 0x20000, CRC(4c934d96) SHA1(e3349ece0e47f684d61ad11bfea4a90602287350) ) \
/* 1/sqrt(x) table */ \
diff --git a/src/mame/drivers/prodigy.cpp b/src/mame/drivers/prodigy.cpp
index d50482735f6..12246aace05 100644
--- a/src/mame/drivers/prodigy.cpp
+++ b/src/mame/drivers/prodigy.cpp
@@ -214,7 +214,7 @@ NETDEV_LOGIC_CALLBACK_MEMBER(prodigy_state::bcd_bit7_cb) { if (data != 0) m_digi
void prodigy_state::device_start()
{
- m_digits.resolve();
+ m_digits.resolve();
memset(m_line, 0, sizeof(m_line));
#if HTTPUI
m_server = machine().manager().http();
diff --git a/src/mame/drivers/rad_eu3a14.cpp b/src/mame/drivers/rad_eu3a14.cpp
index 5a26570b0b0..efc1021f979 100644
--- a/src/mame/drivers/rad_eu3a14.cpp
+++ b/src/mame/drivers/rad_eu3a14.cpp
@@ -11,7 +11,7 @@
Known to be on this hardware
Golden Tee Golf Home Edition (developed by FarSight Studios)
- Connectv Football (developed by Medialink)
+ Connectv Football (developed by Medialink)
Also on this hardware
@@ -207,7 +207,7 @@ void radica_eu3a14_state::handle_palette(screen_device &screen, bitmap_ind16 &bi
void radica_eu3a14_state::draw_page(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect, int which, int xbase, int ybase, int size)
{
gfx_element *gfx;
-
+
int base = (m_tilebase[1] << 8) | m_tilebase[0];
if (m_tilecfg[2] & 0x04)
{
diff --git a/src/mame/drivers/sg1000.cpp b/src/mame/drivers/sg1000.cpp
index 9a10230bf94..e3eb180700b 100644
--- a/src/mame/drivers/sg1000.cpp
+++ b/src/mame/drivers/sg1000.cpp
@@ -196,12 +196,12 @@ void sg1000_state::sc3000_io_map(address_map &map)
/* This is how the I/O ports are really mapped, but MAME does not support overlapping ranges
void sg1000_state::sc3000_io_map(address_map &map)
{
- map.global_mask(0xff);
- map(0x00, 0x00).mirror(0xdf).rw(UPD9255_TAG, FUNC(i8255_device::read), FUNC(i8255_device::write));
- map(0x00, 0x00).mirror(0x7f).w(SN76489AN_TAG, FUNC(sn76489a_device::write));
- map(0x00, 0x00).mirror(0xae).rw(TMS9918A_TAG, FUNC(tms9918a_device::vram_read), FUNC(tms9918a_device::vram_write));
- map(0x01, 0x01).mirror(0xae).rw(TMS9918A_TAG, FUNC(tms9918a_device::register_read), FUNC(tms9918a_device::register_write));
- map(0x60, 0x60).mirror(0x9f).r(this, FUNC(sg1000_state::sc3000_r_r));
+ map.global_mask(0xff);
+ map(0x00, 0x00).mirror(0xdf).rw(UPD9255_TAG, FUNC(i8255_device::read), FUNC(i8255_device::write));
+ map(0x00, 0x00).mirror(0x7f).w(SN76489AN_TAG, FUNC(sn76489a_device::write));
+ map(0x00, 0x00).mirror(0xae).rw(TMS9918A_TAG, FUNC(tms9918a_device::vram_read), FUNC(tms9918a_device::vram_write));
+ map(0x01, 0x01).mirror(0xae).rw(TMS9918A_TAG, FUNC(tms9918a_device::register_read), FUNC(tms9918a_device::register_write));
+ map(0x60, 0x60).mirror(0x9f).r(this, FUNC(sg1000_state::sc3000_r_r));
}
*/
diff --git a/src/mame/drivers/slapshot.cpp b/src/mame/drivers/slapshot.cpp
index 61252006259..ee0c571fdf4 100644
--- a/src/mame/drivers/slapshot.cpp
+++ b/src/mame/drivers/slapshot.cpp
@@ -261,7 +261,7 @@ void slapshot_state::opwolf3_map(address_map &map)
map(0xc00020, 0xc0002f).r(this, FUNC(slapshot_state::service_input_r)); /* service mirror */
map(0xd00000, 0xd00003).rw(this, FUNC(slapshot_state::msb_sound_r), FUNC(slapshot_state::msb_sound_w));
map(0xe00000, 0xe0000f).rw("adc", FUNC(adc0808_device::data_r), FUNC(adc0808_device::address_offset_start_w)).umask16(0xff00);
-// map(0xe80000, 0xe80001) // gun recoil here?
+// map(0xe80000, 0xe80001) // gun recoil here?
}
diff --git a/src/mame/drivers/smc777.cpp b/src/mame/drivers/smc777.cpp
index 126f66caca7..fb5c4594d5d 100644
--- a/src/mame/drivers/smc777.cpp
+++ b/src/mame/drivers/smc777.cpp
@@ -101,7 +101,7 @@ public:
DECLARE_WRITE8_MEMBER(floppy_select_w);
DECLARE_WRITE_LINE_MEMBER(fdc_intrq_w);
DECLARE_WRITE_LINE_MEMBER(fdc_drq_w);
-
+
DECLARE_QUICKLOAD_LOAD_MEMBER(smc777);
void smc777(machine_config &config);
diff --git a/src/mame/drivers/splus.cpp b/src/mame/drivers/splus.cpp
index 7208d09f72e..6553a1a43a1 100644
--- a/src/mame/drivers/splus.cpp
+++ b/src/mame/drivers/splus.cpp
@@ -112,7 +112,7 @@ private:
uint8_t m_stop_pos[5];
virtual void machine_start() override
- {
+ {
m_digits.resolve();
m_leds.resolve();
}
diff --git a/src/mame/drivers/ssv.cpp b/src/mame/drivers/ssv.cpp
index d83f3334753..c26cc8f466d 100644
--- a/src/mame/drivers/ssv.cpp
+++ b/src/mame/drivers/ssv.cpp
@@ -4777,7 +4777,7 @@ GAME( 1994, twineag2, 0, twineag2, twineag2, ssv_state, twineag2, ROT27
GAME( 1995, gdfs, 0, gdfs, gdfs, ssv_state, gdfs, ROT0, "Banpresto", "Mobil Suit Gundam Final Shooting (Japan)", MACHINE_NO_COCKTAIL | MACHINE_SUPPORTS_SAVE )
-// Ultra X Weapon: "developed by Seta" in ending screen
+// Ultra X Weapon: "developed by Seta" in ending screen
GAME( 1995, ultrax, 0, ultrax, ultrax, ssv_state, ultrax, ROT270, "Banpresto / Tsuburaya Productions / Seta", "Ultra X Weapons / Ultra Keibitai", MACHINE_NO_COCKTAIL | MACHINE_IMPERFECT_GRAPHICS | MACHINE_SUPPORTS_SAVE ) // 95-01-30 13:27:15 on startup
GAME( 1995, ultraxg, ultrax, ultrax, ultrax, ssv_state, ultrax, ROT270, "Banpresto / Tsuburaya Productions / Seta", "Ultra X Weapons / Ultra Keibitai (GAMEST review build)", MACHINE_NO_COCKTAIL | MACHINE_IMPERFECT_GRAPHICS | MACHINE_SUPPORTS_SAVE ) // 95-02-16 15:30:24 on startup (newer, but could have pause functionality due to being a review build so left as clone)
diff --git a/src/mame/drivers/symbolics.cpp b/src/mame/drivers/symbolics.cpp
index bcfe13ebbde..63432c0903a 100644
--- a/src/mame/drivers/symbolics.cpp
+++ b/src/mame/drivers/symbolics.cpp
@@ -358,7 +358,7 @@ ROM_START( s3670 )
ROM_REGION16_BE( 0x20,"fep_prom", 0)
ROM_LOAD("fep-3973.d5", 0x0000, 0x0020, CRC(29910aa0) SHA1(433ea99b8e21055abb80bebc1d7dfc9e3aacd097)) // nFEP S/N 3973
// note: load all the PLAs, PALs and PROMs here
-
+
// picture is at https://4310b1a9-a-11c96037-s-sites.googlegroups.com/a/ricomputermuseum.org/home/Home/equipment/symbolics-3645/Symbolics_3645_FEP.jpg
/*
LBBUFA.4 mb7124 @A6 <- 4887235 page 630 has LBBUFC.UCODE rev27 \
diff --git a/src/mame/drivers/system16.cpp b/src/mame/drivers/system16.cpp
index 2cfe32a6707..0013bc2aa1c 100644
--- a/src/mame/drivers/system16.cpp
+++ b/src/mame/drivers/system16.cpp
@@ -1291,15 +1291,15 @@ void segas1x_bootleg_state::mwalkbl_map(address_map &map)
/* bootleg video regs */
/* map(0xc00000, 0xc00001).nop();
- map(0xc00002, 0xc00003).nop();
- map(0xc00004, 0xc00005).nop(); // tile bank?
- map(0xc00006, 0xc00007).nop();
- map(0xc44000, 0xc44001).nop();
- map(0xc46000, 0xc46001).nop();
- map(0xc46200, 0xc46201).nop();
- map(0xc46400, 0xc464ff).nop(); // scroll?
- map(0xc46500, 0xc465ff).nop(); // scroll?
- */
+ map(0xc00002, 0xc00003).nop();
+ map(0xc00004, 0xc00005).nop(); // tile bank?
+ map(0xc00006, 0xc00007).nop();
+ map(0xc44000, 0xc44001).nop();
+ map(0xc46000, 0xc46001).nop();
+ map(0xc46200, 0xc46201).nop();
+ map(0xc46400, 0xc464ff).nop(); // scroll?
+ map(0xc46500, 0xc465ff).nop(); // scroll?
+ */
map(0xc40000, 0xc40001).portr("COINAGE");
map(0xc40002, 0xc40003).portr("DSW1");
diff --git a/src/mame/drivers/taitottl.cpp b/src/mame/drivers/taitottl.cpp
index e0946626043..73cc33bc564 100644
--- a/src/mame/drivers/taitottl.cpp
+++ b/src/mame/drivers/taitottl.cpp
@@ -314,15 +314,15 @@ TT Speed Race Color
label loc. Part # Use?
==========================================================
-TOP PCB: [CEN00008 CE070013 CE-44 B]
+TOP PCB: [CEN00008 CE070013 CE-44 B]
CE01 7J Harris 7643
- SD06 4D Harris 7643
+ SD06 4D Harris 7643
SD07 4C Harris 7643
SD05 5B MMI 6301
-MIDDLE PCB: [CEN00007 CE070012 CE-44]
- CR11 4A MMI 6301
- CR11 4J MMI 6301
+MIDDLE PCB: [CEN00007 CE070012 CE-44]
+ CR11 4A MMI 6301
+ CR11 4J MMI 6301
TE-01 2B Harris 7643
BOTTOM PCB: [CEN00006 CE070011 CE-44 B]
@@ -339,19 +339,19 @@ ROM_START( ttsracec )
ROM_REGION( 0x10000, "maincpu", ROMREGION_ERASE00 )
ROM_REGION( 0x0800, "roms", ROMREGION_ERASE00 )
- ROM_LOAD( "ce01.7j", 0x0000, 0x0800, CRC(277cd3ca) SHA1(9493f3b4575a10d0b243446d92fdc56a540bc0e4) )
- ROM_LOAD( "sd06.4d", 0x0000, 0x0800, CRC(2ff92235) SHA1(7be446300937362e365b85181d90006e901534aa) )
- ROM_LOAD( "sd07.4c", 0x0000, 0x0800, CRC(38b69397) SHA1(6a072e74d4537c8128bf4a3b91f5636640f2472f) )
- ROM_LOAD( "sd05.5b", 0x0000, 0x0100, CRC(d10920ee) SHA1(39bcff62a028373193875f873a76a42b9105a647) )
+ ROM_LOAD( "ce01.7j", 0x0000, 0x0800, CRC(277cd3ca) SHA1(9493f3b4575a10d0b243446d92fdc56a540bc0e4) )
+ ROM_LOAD( "sd06.4d", 0x0000, 0x0800, CRC(2ff92235) SHA1(7be446300937362e365b85181d90006e901534aa) )
+ ROM_LOAD( "sd07.4c", 0x0000, 0x0800, CRC(38b69397) SHA1(6a072e74d4537c8128bf4a3b91f5636640f2472f) )
+ ROM_LOAD( "sd05.5b", 0x0000, 0x0100, CRC(d10920ee) SHA1(39bcff62a028373193875f873a76a42b9105a647) )
ROM_LOAD( "cr11.4a", 0x0000, 0x0100, CRC(b3250118) SHA1(ab8bfa11b112b03b8ff00b09b3e6d9b221051ad2) )
- ROM_LOAD( "cr11.4j", 0x0000, 0x0100, CRC(b3250118) SHA1(ab8bfa11b112b03b8ff00b09b3e6d9b221051ad2) )
- ROM_LOAD( "te-01.2b", 0x0000, 0x0800, CRC(1bafaae6) SHA1(5b6dcdf1e2f3842b0a7313cbd308ae312a675298) )
+ ROM_LOAD( "cr11.4j", 0x0000, 0x0100, CRC(b3250118) SHA1(ab8bfa11b112b03b8ff00b09b3e6d9b221051ad2) )
+ ROM_LOAD( "te-01.2b", 0x0000, 0x0800, CRC(1bafaae6) SHA1(5b6dcdf1e2f3842b0a7313cbd308ae312a675298) )
- ROM_LOAD( "sd08.5e", 0x0000, 0x0020, CRC(a0fc7c02) SHA1(ea2cf44ab64bfa8d5f9105069a8f38dc75505c30) )
- ROM_LOAD( "sd09.5d", 0x0000, 0x0020, CRC(6e4fa64e) SHA1(04368bcdb2e91a17cd7815ee98ad846bb9732d9b) )
- ROM_LOAD( "sd10.6m", 0x0000, 0x0020, CRC(402e0c59) SHA1(a8e43fe7c2f194ae49977e8ef753049f6b378937) )
- ROM_LOAD( "red.2h", 0x0000, 0x0020, CRC(43a3b7ff) SHA1(a1ff087f7aba211a021a8ead688a3a8780d34174) )
+ ROM_LOAD( "sd08.5e", 0x0000, 0x0020, CRC(a0fc7c02) SHA1(ea2cf44ab64bfa8d5f9105069a8f38dc75505c30) )
+ ROM_LOAD( "sd09.5d", 0x0000, 0x0020, CRC(6e4fa64e) SHA1(04368bcdb2e91a17cd7815ee98ad846bb9732d9b) )
+ ROM_LOAD( "sd10.6m", 0x0000, 0x0020, CRC(402e0c59) SHA1(a8e43fe7c2f194ae49977e8ef753049f6b378937) )
+ ROM_LOAD( "red.2h", 0x0000, 0x0020, CRC(43a3b7ff) SHA1(a1ff087f7aba211a021a8ead688a3a8780d34174) )
ROM_END
diff --git a/src/mame/drivers/tecmo.cpp b/src/mame/drivers/tecmo.cpp
index ec9a46f9d62..aefbf6a1372 100644
--- a/src/mame/drivers/tecmo.cpp
+++ b/src/mame/drivers/tecmo.cpp
@@ -292,7 +292,7 @@ static INPUT_PORTS_START( tecmo_default )
PORT_START("SYS_2")
PORT_BIT( 0x0f, IP_ACTIVE_HIGH, IPT_UNKNOWN )
-
+
PORT_START("SYS_3")
PORT_BIT( 0x0f, IP_ACTIVE_HIGH, IPT_UNKNOWN )
@@ -591,7 +591,7 @@ static INPUT_PORTS_START( silkwormp )
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON2 )
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON1 )
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_BUTTON3 )
-
+
PORT_MODIFY("JOY2")
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT ) PORT_8WAY PORT_PLAYER(2)
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT ) PORT_8WAY PORT_PLAYER(2)
@@ -602,13 +602,13 @@ static INPUT_PORTS_START( silkwormp )
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON2 ) PORT_PLAYER(2)
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_PLAYER(2)
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_BUTTON3 ) PORT_PLAYER(2)
-
+
PORT_MODIFY("SYS_2")
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_START1 )
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_START2 )
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_COIN2 ) // Coin inputs are switched
PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_COIN1 )
-
+
PORT_MODIFY("SYS_3")
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON4 ) // Vehicle swap extra button
@@ -646,7 +646,7 @@ static INPUT_PORTS_START( silkwormp )
PORT_DIPSETTING( 0x06, "200000" )
PORT_DIPSETTING( 0x07, DEF_STR( None ) )
PORT_DIPNAME( 0x70, 0x60, DEF_STR( Difficulty ) ) PORT_DIPLOCATION("SW2:!5,!6,!7")
- PORT_DIPSETTING( 0x00, "1" )
+ PORT_DIPSETTING( 0x00, "1" )
PORT_DIPSETTING( 0x40, "2" ) // from the Tecmo US manual
PORT_DIPSETTING( 0x60, "3" ) // (although conflicting info exists, so unverified)
PORT_DIPSETTING( 0x30, "4" )
@@ -799,7 +799,7 @@ MACHINE_CONFIG_END
MACHINE_CONFIG_START(tecmo_state::silkwormp)
silkworm(config);
-
+
/* bootleg pcb doesn't have the MSM5205 populated */
MCFG_DEVICE_REMOVE("msm")
MCFG_CPU_MODIFY("soundcpu")
@@ -1166,7 +1166,7 @@ ROM_START( silkwormb )
ROM_LOAD( "e10.11", 0x10000, 0x08000, CRC(c0c4687d) SHA1(afe05eb7e5a65c995aeac9ea773ad79eb053303f) ) /* fg tiles TMM24256 */
ROM_LOAD( "silkworm.12", 0x20000, 0x10000, CRC(bb0f568f) SHA1(b66c6d0407ed0b068c6bf07987f1b923d4a6e4f8) ) /* fg tiles TMM24512 */
ROM_LOAD( "e12.13", 0x30000, 0x08000, CRC(fc472811) SHA1(e862ec9b38f3f3a1f4668fbc587063eee8e9e821) ) /* fg tiles 27C256 */
-
+
ROM_REGION( 0x40000, "gfx4", 0 )
ROM_LOAD( "silkworm.14", 0x00000, 0x10000, CRC(409df64b) SHA1(cada970bf9cc8f6522e7a71e00fe873568852873) ) /* bg tiles TMM24512 */
ROM_LOAD( "e14.15", 0x10000, 0x08000, CRC(b02acdb6) SHA1(6be74bb89680b79b3a5d13af638ed5a0bb077dad) ) /* bg tiles 27C256 */
diff --git a/src/mame/drivers/tigeroad.cpp b/src/mame/drivers/tigeroad.cpp
index 225debc1389..467f41f78c2 100644
--- a/src/mame/drivers/tigeroad.cpp
+++ b/src/mame/drivers/tigeroad.cpp
@@ -13,12 +13,12 @@ Please contact Phil Stroffolino (phil@maya.com) if there are any questions
regarding this driver.
TODO:
-- F1 Dream throws an address error if player wins all the races (i.e. when the
+- F1 Dream throws an address error if player wins all the races (i.e. when the
game is supposed to give an ending):
010C68: 102E 001C move.b ($1c,A6), D0 ; reads 0xf from work RAM (misaligned)
010C6C: 207B 000E movea.l ($e,PC,D0.w), A0 ; table from 0x10c7c onward
010C70: 4E90 jsr (A0) ; throws address error here
- None of the available 5 vectors seems to fit here, btanb?
+ None of the available 5 vectors seems to fit here, btanb?
**************************************************************************
diff --git a/src/mame/drivers/vii.cpp b/src/mame/drivers/vii.cpp
index 8e47af0fb1a..25ee804c67a 100644
--- a/src/mame/drivers/vii.cpp
+++ b/src/mame/drivers/vii.cpp
@@ -1581,8 +1581,8 @@ ROM_START( rad_sktv )
/* The external scanner MCU is a Winbond from 2000: SA5641
the scanner plays sound effects when scanning, without being connected to the main unit, so a way to dump / emulate
- this MCU is also needed for complete emulation
-
+ this MCU is also needed for complete emulation
+
TODO: find details on MCU so that we know capacity etc. */
ROM_END
diff --git a/src/mame/drivers/vp415.cpp b/src/mame/drivers/vp415.cpp
index 6d8d1025a6c..4283d6e8603 100644
--- a/src/mame/drivers/vp415.cpp
+++ b/src/mame/drivers/vp415.cpp
@@ -4,39 +4,39 @@
Skeleton driver for Philips VP415 LV ROM Player
- List of Modules:
- A - Audio Processor
- B - RGB
- C - Video Processor
- D - Ref Source
- E - Slide Drive
- F - Motor+Sequence
- G - Gen Lock
- H - ETBC B
- I - ETBC C
- J - Focus
- K - HF Processor
- L - Video Dropout Correction
- M - Radial
- N - Display Keyboard
- P - Front Loader
- Q - RC5 Mirror
- R - Drive Processor
- S - Control
- T - Supply
- U - Analog I/O
- V - Module Carrier
- W - CPU Datagrabber
- X - LV ROM
- Y - Vid Mix
- Z - Deck Electronics
-
- TODO:
- - Module W has a NEC D8041AHC which has not yet been dumped. A dump
- will be necessary to properly emulate the player.
- - Driver currently fails the initial self-test with code 053. Per
- the service manual, code 053 means "no lead-in code at start-up of
- player (diagnostics)".
+ List of Modules:
+ A - Audio Processor
+ B - RGB
+ C - Video Processor
+ D - Ref Source
+ E - Slide Drive
+ F - Motor+Sequence
+ G - Gen Lock
+ H - ETBC B
+ I - ETBC C
+ J - Focus
+ K - HF Processor
+ L - Video Dropout Correction
+ M - Radial
+ N - Display Keyboard
+ P - Front Loader
+ Q - RC5 Mirror
+ R - Drive Processor
+ S - Control
+ T - Supply
+ U - Analog I/O
+ V - Module Carrier
+ W - CPU Datagrabber
+ X - LV ROM
+ Y - Vid Mix
+ Z - Deck Electronics
+
+ TODO:
+ - Module W has a NEC D8041AHC which has not yet been dumped. A dump
+ will be necessary to properly emulate the player.
+ - Driver currently fails the initial self-test with code 053. Per
+ the service manual, code 053 means "no lead-in code at start-up of
+ player (diagnostics)".
***************************************************************************/
@@ -618,13 +618,13 @@ WRITE8_MEMBER(vp415_state::drive_cpu_port1_w)
//READ_LINE_MEMBER(vp415_state::drive_rxd_r)
//{
-// logerror("%s: drive_rxd_r: %d\n", machine().describe_context(), 0);
-// return 0;
+// logerror("%s: drive_rxd_r: %d\n", machine().describe_context(), 0);
+// return 0;
//}
//WRITE_LINE_MEMBER(vp415_state::drive_txd_w)
//{
-// logerror("%s: drive_txd_w: %d\n", machine().describe_context(), state);
+// logerror("%s: drive_txd_w: %d\n", machine().describe_context(), state);
//}
WRITE8_MEMBER(vp415_state::drive_cpu_port3_w)
{
diff --git a/src/mame/drivers/warpwarp.cpp b/src/mame/drivers/warpwarp.cpp
index 07b270106e1..436e7cf5ccb 100644
--- a/src/mame/drivers/warpwarp.cpp
+++ b/src/mame/drivers/warpwarp.cpp
@@ -123,13 +123,13 @@ Notes:
- There are images/videos on the net of kaitei and geebee running in 3bpp
(aka 7 colors), this is assumed to be a homebrew repair or hack.
- Update: Gee Bee definitely uses an overlay while kaitei actually outputs
+ Update: Gee Bee definitely uses an overlay while kaitei actually outputs
colors depending on the monitor type used (color or b&w).
- sos is the odd one: it seems to be running in a b&w environment but a pic
- on the net shows it with reversed black and white compared to current
- implementation.
- Also the flyer shows the girl to be colorized purple, while the points
- numbers are in cyan and text in red (and this arrangement doesn't
+ sos is the odd one: it seems to be running in a b&w environment but a pic
+ on the net shows it with reversed black and white compared to current
+ implementation.
+ Also the flyer shows the girl to be colorized purple, while the points
+ numbers are in cyan and text in red (and this arrangement doesn't
make much sense, different version maybe?).
***************************************************************************/
diff --git a/src/mame/drivers/xavix.cpp b/src/mame/drivers/xavix.cpp
index 451b9cecca9..04c727b7890 100644
--- a/src/mame/drivers/xavix.cpp
+++ b/src/mame/drivers/xavix.cpp
@@ -631,7 +631,7 @@ MACHINE_CONFIG_END
DRIVER_INIT_MEMBER(xavix_state, xavix)
{
- m_rgnlen = memregion("bios")->bytes();
+ m_rgnlen = memregion("bios")->bytes();
m_rgn = memregion("bios")->base();
}