summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2011-11-13 20:35:34 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2011-11-13 20:35:34 +0000
commit18b06709c86a698d56c755e478f443a3381af61f (patch)
treeff6ac7921b8210e8c72660210d00048624f50aed
parent16e7be92ba2a4a3b78f4cb07878be6d5aa962be1 (diff)
Clean-ups and version bumpmame0144
-rw-r--r--src/emu/diimage.c2
-rw-r--r--src/emu/imagedev/floppy.c6
-rw-r--r--src/emu/machine/6522via.c6
-rw-r--r--src/emu/machine/amigafdc.c2
-rw-r--r--src/emu/machine/ncr539x.c2
-rw-r--r--src/emu/machine/ncr539x.h4
-rw-r--r--src/lib/formats/ami_dsk.c2
-rw-r--r--src/mame/drivers/galgame.c6
-rw-r--r--src/mame/drivers/naomi.c18
-rw-r--r--src/mame/drivers/neodrvr.c6
-rw-r--r--src/mame/drivers/neogeo.c10
-rw-r--r--src/mame/drivers/nexus3d.c32
-rw-r--r--src/mame/drivers/pengadvb.c16
-rw-r--r--src/mame/drivers/raiden2.c8
-rw-r--r--src/mame/drivers/segas24.c2
-rw-r--r--src/mame/drivers/toaplan2.c22
-rw-r--r--src/mame/machine/amiga.c2
-rw-r--r--src/osd/sdl/netdev_tap.c6
-rw-r--r--src/version.c2
19 files changed, 78 insertions, 76 deletions
diff --git a/src/emu/diimage.c b/src/emu/diimage.c
index 144c53d440f..39bcc92d6f8 100644
--- a/src/emu/diimage.c
+++ b/src/emu/diimage.c
@@ -999,7 +999,7 @@ void device_image_interface::clear()
void device_image_interface::unload()
{
- if (is_loaded() || m_software_info_ptr)
+ if (is_loaded() || m_software_info_ptr)
{
call_unload();
}
diff --git a/src/emu/imagedev/floppy.c b/src/emu/imagedev/floppy.c
index 74dad81ec6c..43f0ba7353a 100644
--- a/src/emu/imagedev/floppy.c
+++ b/src/emu/imagedev/floppy.c
@@ -431,7 +431,7 @@ void floppy_image_device::write_zone(UINT32 *buf, int &cells, int &index, UINT32
while(spos < epos) {
while(index != cells-1 && (buf[index+1] & floppy_image::TIME_MASK) <= spos)
index++;
-
+
UINT32 ref_start = buf[index] & floppy_image::TIME_MASK;
UINT32 ref_end = index == cells-1 ? 200000000 : buf[index+1] & floppy_image::TIME_MASK;
UINT32 ref_mg = buf[index] & floppy_image::MG_MASK;
@@ -479,7 +479,7 @@ void floppy_image_device::write_zone(UINT32 *buf, int &cells, int &index, UINT32
index++;
}
}
- spos = ref_end;
+ spos = ref_end;
} else {
// Overlap at the start only
@@ -521,7 +521,7 @@ void floppy_image_device::write_zone(UINT32 *buf, int &cells, int &index, UINT32
spos = epos;
}
}
-
+
}
}
diff --git a/src/emu/machine/6522via.c b/src/emu/machine/6522via.c
index ba6385f441e..aad4257dda7 100644
--- a/src/emu/machine/6522via.c
+++ b/src/emu/machine/6522via.c
@@ -471,7 +471,7 @@ void via6522_device::device_timer(emu_timer &timer, device_timer_id id, int para
set_int(INT_T2);
}
break;
-
+
case TIMER_CA2:
m_out_ca2_func(1);
m_out_ca2 = 1;
@@ -550,7 +550,7 @@ READ8_MEMBER( via6522_device::read )
/* call the CA2 output function */
m_out_ca2_func(0);
m_out_ca2 = 0;
-
+
m_ca2_timer->adjust(cycles_to_time(1));
}
/* If CA2 is configured as output and in pulse or handshake mode,
@@ -740,7 +740,7 @@ WRITE8_MEMBER( via6522_device::write )
/* call the CA2 output function */
m_out_ca2_func(0);
m_out_ca2 = 0;
-
+
m_ca2_timer->adjust(cycles_to_time(1));
}
else if (CA2_AUTO_HS(m_pcr))
diff --git a/src/emu/machine/amigafdc.c b/src/emu/machine/amigafdc.c
index df496398fd7..0a9c6974eca 100644
--- a/src/emu/machine/amigafdc.c
+++ b/src/emu/machine/amigafdc.c
@@ -175,7 +175,7 @@ void amiga_fdc::live_run(attotime limit)
amiga_custom_w(space, REG_INTREQ, 0x8000 | INTENA_DSKSYN, 0xffff);
} else
dskbyt &= ~0x0400;
-
+
if(cur_live.bit_counter == 8) {
dskbyt = (dskbyt & 0xff00) | 0x8000 | (cur_live.shift_reg & 0xff);
cur_live.bit_counter = 0;
diff --git a/src/emu/machine/ncr539x.c b/src/emu/machine/ncr539x.c
index fc16d62cd43..09e5f019fc1 100644
--- a/src/emu/machine/ncr539x.c
+++ b/src/emu/machine/ncr539x.c
@@ -14,7 +14,7 @@
#define VERBOSE (0)
#define VERBOSE_READS (0)
-enum
+enum
{
TIMER_539X_COMMAND,
diff --git a/src/emu/machine/ncr539x.h b/src/emu/machine/ncr539x.h
index eee6f560abf..bf3acd71ef8 100644
--- a/src/emu/machine/ncr539x.h
+++ b/src/emu/machine/ncr539x.h
@@ -69,10 +69,10 @@ private:
UINT8 m_clock_factor;
UINT8 m_forced_test;
UINT8 m_data_alignment;
-
+
bool m_selected;
bool m_chipid_available, m_chipid_lock;
-
+
static const int m_fifo_size = 16;
UINT8 m_fifo_ptr, m_fifo[m_fifo_size];
diff --git a/src/lib/formats/ami_dsk.c b/src/lib/formats/ami_dsk.c
index 805d53c2738..127c2c1c348 100644
--- a/src/lib/formats/ami_dsk.c
+++ b/src/lib/formats/ami_dsk.c
@@ -124,7 +124,7 @@ bool adf_format::save(io_generic *io, floppy_image *image)
io_generic_write(io, sectdata, (track*2 + side)*512*11, 512*11);
}
}
- }
+ }
return true;
}
diff --git a/src/mame/drivers/galgame.c b/src/mame/drivers/galgame.c
index d3749ba480c..d8319d0746a 100644
--- a/src/mame/drivers/galgame.c
+++ b/src/mame/drivers/galgame.c
@@ -1,10 +1,10 @@
/*
- Galaxy Game
+ Galaxy Game
- Driver by Mariusz Wojcieszek
+ Driver by Mariusz Wojcieszek
- First commercial video game.
+ First commercial video game.
*/
diff --git a/src/mame/drivers/naomi.c b/src/mame/drivers/naomi.c
index df1982fad3e..5c7e9496ef2 100644
--- a/src/mame/drivers/naomi.c
+++ b/src/mame/drivers/naomi.c
@@ -3790,7 +3790,7 @@ ROM_START( hotd2p )
ROM_LOAD( "tg12.ic2", 0x00000, 0x10000, CRC(2c9600b1) SHA1(91813a43851c48d400fde41b1198dabf55bade2d) )
ROM_REGION( 0xa800000, "rom_board", ROMREGION_ERASEFF)
- ROM_LOAD( "hotd2proto.ic22", 0x000000, 0x200000, CRC(676318a6) SHA1(19c0330468dcc20653bb9570df004af1daa37a33) )
+ ROM_LOAD( "hotd2proto.ic22", 0x000000, 0x200000, CRC(676318a6) SHA1(19c0330468dcc20653bb9570df004af1daa37a33) )
ROM_LOAD( "mpr-21386.ic1", 0x0800000, 0x800000, CRC(88fb0562) SHA1(185a0eab68d86617cb6325d64c48a2dd4854622b) )
ROM_LOAD( "mpr-21387.ic2", 0x1000000, 0x800000, CRC(5f4dd576) SHA1(5483c3949e587bbcca7e8fc7db9aff4cd2a33f02) )
ROM_LOAD( "mpr-21388.ic3", 0x1800000, 0x800000, CRC(3e62fca4) SHA1(8cdebdebabc88160f458e1e779d9ebb4e6a14523) )
@@ -4355,7 +4355,7 @@ ROM_START( 18wheels )
NAOMI_DEFAULT_EEPROM
ROM_REGION( 0xa800000, "rom_board", ROMREGION_ERASEFF)
- ROM_LOAD( "epr-23298.ic22", 0x0000000, 0x400000, CRC(bfaf8302) SHA1(e4d4d1aadd84fc03a45e154001cd9262eb6be585) )
+ ROM_LOAD( "epr-23298.ic22", 0x0000000, 0x400000, CRC(bfaf8302) SHA1(e4d4d1aadd84fc03a45e154001cd9262eb6be585) )
ROM_LOAD( "mpr-22164.ic1", 0x0800000, 0x800000, CRC(ca045315) SHA1(0c5becb5220659fa86f1e7901032f8c9a1329a51) )
ROM_LOAD( "mpr-22165.ic2", 0x1000000, 0x800000, CRC(e43f4ba8) SHA1(768159bccae6a72c809e9f374538df304c92fbfe) )
ROM_LOAD( "mpr-22166.ic3", 0x1800000, 0x800000, CRC(ea67edb1) SHA1(1214fdbfd8ce9f7a2b33e97f7c4e22ebb3eee988) )
@@ -5257,12 +5257,12 @@ ROM_START( mbaa )
NAOMI_DEFAULT_EEPROM
ROM_REGION( 0x18000000, "rom_board", ROMREGION_ERASEFF)
- ROM_LOAD( "ic8.bin", 0x00000000, 0x4000000, CRC(0fbc0512) SHA1(a84969ae0abc571afc297afd0c628c6551b52819) )
- ROM_LOAD( "ic9.bin", 0x04000000, 0x4000000, CRC(06d8f022) SHA1(e20a5f66a5aa36c9fa61fd39cbdc2946bb905568) )
- ROM_LOAD( "ic10.bin", 0x08000000, 0x4000000, CRC(b6bb7ce4) SHA1(51185c8fa95a67d3a4dfa422ed0eee4bf62c759d) )
- ROM_LOAD( "ic11.bin", 0x0c000000, 0x4000000, CRC(211ac347) SHA1(9d8348db90971204e5d60f2d561fcca33ee7c264) )
- ROM_LOAD( "ic12.bin", 0x10000000, 0x4000000, CRC(b8a6bff2) SHA1(befbc2e917b3107f1c4bfb9169623282ff97bfb2) )
- ROM_LOAD( "ic13.bin", 0x14000000, 0x4000000, CRC(4886329f) SHA1(6ccf6fb83cfdbef3f85f6c06e641c38ff434d605) )
+ ROM_LOAD( "ic8.bin", 0x00000000, 0x4000000, CRC(0fbc0512) SHA1(a84969ae0abc571afc297afd0c628c6551b52819) )
+ ROM_LOAD( "ic9.bin", 0x04000000, 0x4000000, CRC(06d8f022) SHA1(e20a5f66a5aa36c9fa61fd39cbdc2946bb905568) )
+ ROM_LOAD( "ic10.bin", 0x08000000, 0x4000000, CRC(b6bb7ce4) SHA1(51185c8fa95a67d3a4dfa422ed0eee4bf62c759d) )
+ ROM_LOAD( "ic11.bin", 0x0c000000, 0x4000000, CRC(211ac347) SHA1(9d8348db90971204e5d60f2d561fcca33ee7c264) )
+ ROM_LOAD( "ic12.bin", 0x10000000, 0x4000000, CRC(b8a6bff2) SHA1(befbc2e917b3107f1c4bfb9169623282ff97bfb2) )
+ ROM_LOAD( "ic13.bin", 0x14000000, 0x4000000, CRC(4886329f) SHA1(6ccf6fb83cfdbef3f85f6c06e641c38ff434d605) )
ROM_REGION( 4, "rom_key", 0 )
ROM_LOAD( "mbaa-key.bin", 0x000000, 0x000004, CRC(f4ad909f) SHA1(27ba44592c2642b5862a24f68c755ad4115e6047) )
@@ -7734,7 +7734,7 @@ ROM_END
/* 0058 */ GAME( 2008, ausfache, naomi, naomim4, naomi, naomi, ROT0, "Subtle Style", "Akatsuki Blitzkampf Ausf Achse", GAME_IMPERFECT_GRAPHICS|GAME_IMPERFECT_SOUND|GAME_NOT_WORKING )
/* 0059 */ GAME( 2008, illvelo, naomi, naomim4, naomi, naomi, ROT270, "Milestone", "Illvelo (Illmatic Envelope)", GAME_IMPERFECT_GRAPHICS|GAME_IMPERFECT_SOUND|GAME_NOT_WORKING )
// 0060 Mamoru-kun wa Norowarete Shimatta!
-/* 0061 */ GAME( 2008, mbaa, naomi, naomim4, naomi, naomi, ROT0, "Type-Moon/Ecole","Melty Blood Actress Again", GAME_IMPERFECT_GRAPHICS|GAME_IMPERFECT_SOUND|GAME_NOT_WORKING )
+/* 0061 */ GAME( 2008, mbaa, naomi, naomim4, naomi, naomi, ROT0, "Type-Moon/Ecole","Melty Blood Actress Again", GAME_IMPERFECT_GRAPHICS|GAME_IMPERFECT_SOUND|GAME_NOT_WORKING )
// 0061 Melty Blood Actress Again (Rev A - original is rev 0)
// 0062 Radilgy Noar
/* HMG016007 */ GAME( 2001, hmgeo, naomi, naomim2, naomi, naomi, ROT0, "Capcom", "Heavy Metal Geomatrix (JPN, USA, EUR, ASI, AUS) (Rev A)", GAME_UNEMULATED_PROTECTION|GAME_IMPERFECT_GRAPHICS|GAME_IMPERFECT_SOUND|GAME_NOT_WORKING )
diff --git a/src/mame/drivers/neodrvr.c b/src/mame/drivers/neodrvr.c
index 6a341fd924f..c6e03a1a43f 100644
--- a/src/mame/drivers/neodrvr.c
+++ b/src/mame/drivers/neodrvr.c
@@ -9754,17 +9754,17 @@ static DRIVER_INIT( mvs )
// handle protected carts
void mvs_install_protection(device_image_interface& image)
{
-// neogeo_state *state = image.device().machine().driver_data<neogeo_state>();
+// neogeo_state *state = image.device().machine().driver_data<neogeo_state>();
const char *crypt_feature = image.get_feature( "crypt" );
if(crypt_feature == NULL)
{
- neo_gameinit = driver_init_neogeo;
+ neo_gameinit = driver_init_neogeo;
}
else
{
/* work out which Driver Init decryption function to call based on flag in softlist
- - note this is called AFTER the regular DRIVER_INIT */
+ - note this is called AFTER the regular DRIVER_INIT */
if(strcmp(crypt_feature,"mslugx_prot") == 0) { neo_gameinit = driver_init_mslugx; }
else if(strcmp(crypt_feature,"fatfury2_prot") == 0) { neo_gameinit = driver_init_fatfury2; }
diff --git a/src/mame/drivers/neogeo.c b/src/mame/drivers/neogeo.c
index f1291cd523d..db1835cc1ef 100644
--- a/src/mame/drivers/neogeo.c
+++ b/src/mame/drivers/neogeo.c
@@ -1288,20 +1288,20 @@ DEVICE_IMAGE_LOAD( neo_cartridge )
image.device().machine().region_free("maincpu");
image.device().machine().region_alloc("maincpu",size, 2, ENDIANNESS_BIG);
memcpy(image.device().machine().region("maincpu")->base(),image.get_software_region("maincpu"),size);
-
+
// for whatever reason (intentional, or design flaw) software loaded via software lists is swapped in endianess vs. the standard ROM loading, regardless of the above. Swap it to keep consistency
for (int i=0; i<size/2;i++)
{
UINT16* ROM = (UINT16*)image.device().machine().region("maincpu")->base();
- ROM[i] = ((ROM[i]&0xff00)>>8) | ((ROM[i]&0x00ff)<<8);
+ ROM[i] = ((ROM[i]&0xff00)>>8) | ((ROM[i]&0x00ff)<<8);
}
-
+
size = image.get_software_region_length("fixed");
image.device().machine().region_free("fixed");
image.device().machine().region_alloc("fixed",size,1, ENDIANNESS_LITTLE);
memcpy(image.device().machine().region("fixed")->base(),image.get_software_region("fixed"),size);
-
- if(image.get_software_region("audiocpu") != NULL)
+
+ if(image.get_software_region("audiocpu") != NULL)
{
size = image.get_software_region_length("audiocpu");
image.device().machine().region_free("audiocpu");
diff --git a/src/mame/drivers/nexus3d.c b/src/mame/drivers/nexus3d.c
index 4777ae20cb9..ce6189524c0 100644
--- a/src/mame/drivers/nexus3d.c
+++ b/src/mame/drivers/nexus3d.c
@@ -1,13 +1,13 @@
/************************************************************************
- NEXUS 3D Version 1.0 Board from Interpark
+ NEXUS 3D Version 1.0 Board from Interpark
- Games on this platform:
-
- Arcana Heart FULL, Examu Inc, 2006
+ Games on this platform:
- MagicEyes VRENDER 3D Soc (200 MHz ARM920T CPU / GFX / Sound)
- Also Has 2x QDSP QS1000 for sound
+ Arcana Heart FULL, Examu Inc, 2006
+
+ MagicEyes VRENDER 3D Soc (200 MHz ARM920T CPU / GFX / Sound)
+ Also Has 2x QDSP QS1000 for sound
*/
@@ -61,7 +61,7 @@ void nexus3d_flash_reset(running_machine& machine)
READ8_HANDLER( n3d_flash_r )
{
nexus3d_state *state = space->machine().driver_data<nexus3d_state>();
-
+
if (state->m_last_flash_cmd==0x70) return 0xe0;
if (state->m_last_flash_cmd==0x00)
@@ -69,11 +69,11 @@ READ8_HANDLER( n3d_flash_r )
UINT8 retdat = state->flash_page_data[state->m_flash_page_addr];
//logerror("n3d_flash_r %02x %04x\n", offset, state->m_flash_page_addr);
-
- state->m_flash_page_addr++;
+
+ state->m_flash_page_addr++;
return retdat;
}
-
+
logerror("n3d_flash_r %02x\n", offset);
return 0x00;
@@ -98,7 +98,7 @@ WRITE8_HANDLER( n3d_flash_cmd_w )
WRITE8_HANDLER( n3d_flash_addr_w )
{
nexus3d_state *state = space->machine().driver_data<nexus3d_state>();
-// logerror("n3d_flash_addr_w %02x %02x\n", offset, data);
+// logerror("n3d_flash_addr_w %02x %02x\n", offset, data);
state->m_flash_addr_seq++;
@@ -122,17 +122,17 @@ WRITE8_HANDLER( n3d_flash_addr_w )
static READ32_HANDLER( nexus3d_unk_r )
{
- return space->machine().rand() ^ (space->machine().rand() << 16);
+ return space->machine().rand() ^ (space->machine().rand() << 16);
}
static READ32_HANDLER( nexus3d_unk2_r )
{
- return 0x00000000;//space->machine().rand() ^ (space->machine().rand() << 16);
+ return 0x00000000;//space->machine().rand() ^ (space->machine().rand() << 16);
}
static READ32_HANDLER( nexus3d_unk3_r )
{
- return 0x00000000;//space->machine().rand() ^ (space->machine().rand() << 16);
+ return 0x00000000;//space->machine().rand() ^ (space->machine().rand() << 16);
}
static WRITE32_HANDLER( nexus3d_unk2_w )
@@ -213,7 +213,7 @@ MACHINE_CONFIG_END
// I highly suspect this upgrade (to Full) was done at the PCB shop to boost the value of the PCB, and
// that the original game used a smaller flash. It seems highly unlikely that Examu would ship ROMs
// containing the entire backcatalog of SNK and Capcom material ;-)
-//
+//
// It's possible this set should be marked as a bootleg due to this although I imagine the actual valid
// part of the data will match a clean dump.
ROM_START( acheartf )
@@ -228,7 +228,7 @@ ROM_START( acheartf )
ROM_LOAD( "u46.bin", 0x000000, 0x200000, CRC(1e8a7e73) SHA1(3270bc359b266e57debf8fd4283a46e08d679ae2) )
ROM_REGION( 0x080000, "wavetable", ROMREGION_ERASEFF ) /* QDSP wavetable rom */
-// ROM_LOAD( "qs1001a", 0x000000, 0x80000, CRC(d13c6407) SHA1(57b14f97c7d4f9b5d9745d3571a0b7115fbe3176) ) // missing from this set, but should be the same
+// ROM_LOAD( "qs1001a", 0x000000, 0x80000, CRC(d13c6407) SHA1(57b14f97c7d4f9b5d9745d3571a0b7115fbe3176) ) // missing from this set, but should be the same
ROM_END
static DRIVER_INIT( nexus3d )
diff --git a/src/mame/drivers/pengadvb.c b/src/mame/drivers/pengadvb.c
index 4b201f0c984..b4741928b99 100644
--- a/src/mame/drivers/pengadvb.c
+++ b/src/mame/drivers/pengadvb.c
@@ -44,14 +44,14 @@ public:
static void mem_map_banks(running_machine &machine)
{
pengadvb_state *state = machine.driver_data<pengadvb_state>();
- /* memorymap: (rest is assumed unmapped)
- slot 0
- 0000-7fff BIOS ROM
- slot 1
- 4000-bfff game ROM
- slot 3
- c000-ffff RAM
- */
+ /* memorymap: (rest is assumed unmapped)
+ slot 0
+ 0000-7fff BIOS ROM
+ slot 1
+ 4000-bfff game ROM
+ slot 3
+ c000-ffff RAM
+ */
// page 0 (0000-3fff)
switch(state->m_mem_map & 3)
diff --git a/src/mame/drivers/raiden2.c b/src/mame/drivers/raiden2.c
index ae965a86a9c..fe4cd05d79e 100644
--- a/src/mame/drivers/raiden2.c
+++ b/src/mame/drivers/raiden2.c
@@ -1,6 +1,6 @@
/* Seibu Protected 1993-94 era hardware, V30 based (sequel to the 68k based hardware)
- TODO: figure out the rest of the protection
- TODO: Zero team needs COIN3 and COIN4 found and hooked up, they may be on the sound cpu
+ TODO: figure out the rest of the protection
+ TODO: Zero team needs COIN3 and COIN4 found and hooked up, they may be on the sound cpu
*/
/* raiden 2 board test note 17/04/08 (based on test by dox)
@@ -1434,7 +1434,7 @@ static INPUT_PORTS_START( raidendx )
PORT_DIPNAME( 0x2000, 0x2000, DEF_STR( Unknown ) ) PORT_DIPLOCATION("SW2:!6") /* Manual shows "Not Used" */
PORT_DIPSETTING( 0x2000, DEF_STR( Off ) )
PORT_DIPSETTING( 0x0000, DEF_STR( On ) )
-
+
INPUT_PORTS_END
static INPUT_PORTS_START( zeroteam )
@@ -2780,7 +2780,7 @@ ROM_END
As the name implies, this is used to give life again to a "suicided" ZT PCB, where the 3.6v
lithium battery which backs up the FG/sprite encryption keys has died, and the sprites display
-as garbage blocks.
+as garbage blocks.
To use: replace the 3.6v battery with a working one, and then remove the normal four code roms
and install these instead.
Boot the pcb, it should rewrite the sei251 decryption keys and display a message on screen.
diff --git a/src/mame/drivers/segas24.c b/src/mame/drivers/segas24.c
index d69ba846e77..cd93dd3f49c 100644
--- a/src/mame/drivers/segas24.c
+++ b/src/mame/drivers/segas24.c
@@ -10,6 +10,8 @@
/* Missing:
- linescroll in special modes (qgh title, mahmajn2/qrouka attract mode)
- screen flipping (mix register 13 & 2)
+ - FRC timer IRQ is currently in a slight off-beat (timer should be resetted every time
+ that the mode changes, but current MAME framework doesn't seem to like it)
*/
/*
diff --git a/src/mame/drivers/toaplan2.c b/src/mame/drivers/toaplan2.c
index 38988587f19..4ea3dca23dd 100644
--- a/src/mame/drivers/toaplan2.c
+++ b/src/mame/drivers/toaplan2.c
@@ -65,8 +65,8 @@ Supported games:
SET NOTES:
ghox - The ghoxj set displays an English title screen when the jumpers are set for Japan/Taito,
- and fails to display the "Winners Don't Use Drugs" logo when set for USA/Taito (either
- Taito America or Taito Japan).
+ and fails to display the "Winners Don't Use Drugs" logo when set for USA/Taito (either
+ Taito America or Taito Japan).
dogyuun - In the location test version, if you are hit while you have a bomb, the bomb explodes
automatically and saves you from dying. In the final released version, the bomb explodes
@@ -1687,12 +1687,12 @@ static INPUT_PORTS_START( tekipaki )
PORT_DIPSETTING( 0x0006, "Taiwan (Spacy Co., Ltd." )
PORT_DIPSETTING( 0x0007, "USA (Romstar, Inc.)" )
PORT_DIPSETTING( 0x0008, "Hong Kong (Honest Trading Co.)" )
-// PORT_DIPSETTING( 0x0009, DEF_STR( Japan ) ) // English title screen
-// PORT_DIPSETTING( 0x000a, DEF_STR( Japan ) )
-// PORT_DIPSETTING( 0x000b, DEF_STR( Japan ) )
-// PORT_DIPSETTING( 0x000c, DEF_STR( Japan ) )
-// PORT_DIPSETTING( 0x000d, DEF_STR( Japan ) )
-// PORT_DIPSETTING( 0x000e, DEF_STR( Japan ) )
+// PORT_DIPSETTING( 0x0009, DEF_STR( Japan ) ) // English title screen
+// PORT_DIPSETTING( 0x000a, DEF_STR( Japan ) )
+// PORT_DIPSETTING( 0x000b, DEF_STR( Japan ) )
+// PORT_DIPSETTING( 0x000c, DEF_STR( Japan ) )
+// PORT_DIPSETTING( 0x000d, DEF_STR( Japan ) )
+// PORT_DIPSETTING( 0x000e, DEF_STR( Japan ) )
PORT_DIPSETTING( 0x000f, "Japan (Distributed by Tecmo)" )
PORT_BIT( 0x0010, IP_ACTIVE_HIGH, IPT_SPECIAL ) PORT_CUSTOM(c2map_r, NULL)
INPUT_PORTS_END
@@ -1743,7 +1743,7 @@ static INPUT_PORTS_START( ghox )
PORT_DIPSETTING( 0x0000b, "USA (Taito America Corporation)" )
PORT_DIPSETTING( 0x0000c, "USA (Taito Corporation Japan)" )
PORT_DIPSETTING( 0x8000d, "Europe (Taito Corporation Japan)" )
-// PORT_DIPSETTING( 0x0000e, "Japan (Licensed to [blank])" ) // English title screen
+// PORT_DIPSETTING( 0x0000e, "Japan (Licensed to [blank])" ) // English title screen
PORT_DIPSETTING( 0x0000f, "Japan (Taito Corporation)" )
PORT_START("PAD1") /* Paddle 1 (left-right) read at $100000 */
@@ -1824,12 +1824,12 @@ static INPUT_PORTS_START( dogyuuna )
PORT_DIPSETTING( 0x0040, "Hong Kong (Charterfield); no speedups" )
PORT_DIPSETTING( 0x0050, "Korea (Unite Trading); no speedups" )
PORT_DIPSETTING( 0x0060, "Taiwan; no speedups" )
-// PORT_DIPSETTING( 0x0070, "Taiwan (Licensed to ???????); no speedups" )
+// PORT_DIPSETTING( 0x0070, "Taiwan (Licensed to ???????); no speedups" )
PORT_DIPSETTING( 0x0080, "Southeast Asia (Charterfield); no speedups" )
PORT_DIPSETTING( 0x0090, "Hong Kong (Charterfield)" )
PORT_DIPSETTING( 0x00a0, "Korea (Unite Trading)" )
PORT_DIPSETTING( 0x00b0, DEF_STR( Taiwan ) )
-// PORT_DIPSETTING( 0x00c0, "Taiwan (Licensed to ???????)" )
+// PORT_DIPSETTING( 0x00c0, "Taiwan (Licensed to ???????)" )
PORT_DIPSETTING( 0x00d0, "Southeast Asia (Charterfield)" )
// PORT_DIPSETTING( 0x00e0, DEF_STR( Unused ) )
PORT_DIPSETTING( 0x00f0, "Japan (Taito Corp.)" )
diff --git a/src/mame/machine/amiga.c b/src/mame/machine/amiga.c
index d26ec124d2c..b8b5b061f6a 100644
--- a/src/mame/machine/amiga.c
+++ b/src/mame/machine/amiga.c
@@ -1385,7 +1385,7 @@ WRITE16_HANDLER( amiga_custom_w )
data &= 0x9fff;
data = (data & 0x8000) ? (CUSTOM_REG(offset) | (data & 0x7fff)) : (CUSTOM_REG(offset) & ~(data & 0x7fff));
space->machine().device<amiga_fdc>("fdc")->dmacon_set(data);
-
+
/* if 'blitter-nasty' has been turned on and we have a blit pending, reschedule it */
if ( ( data & 0x400 ) && ( CUSTOM_REG(REG_DMACON) & 0x4000 ) )
state->m_blitter_timer->adjust( downcast<cpu_device *>(&space->device())->cycles_to_attotime( BLITTER_NASTY_DELAY ));
diff --git a/src/osd/sdl/netdev_tap.c b/src/osd/sdl/netdev_tap.c
index 3cc9a53458f..68f76eec7e6 100644
--- a/src/osd/sdl/netdev_tap.c
+++ b/src/osd/sdl/netdev_tap.c
@@ -10,7 +10,7 @@
#ifdef __linux__
#define IFF_TAP 0x0002
#define IFF_NO_PI 0x1000
-#define TUNSETIFF _IOW('T', 202, int)
+#define TUNSETIFF _IOW('T', 202, int)
#endif
class netdev_tap : public netdev
@@ -18,7 +18,7 @@ class netdev_tap : public netdev
public:
netdev_tap(const char *name, class device_network_interface *ifdev, int rate);
~netdev_tap();
-
+
int send(UINT8 *buf, int len);
void set_mac(const char *mac);
protected:
@@ -53,7 +53,7 @@ netdev_tap::netdev_tap(const char *name, class device_network_interface *ifdev,
}
strncpy(m_ifname, ifr.ifr_name, 10);
fcntl(m_fd, F_SETFL, O_NONBLOCK);
-
+
#else
m_fd = -1;
#endif
diff --git a/src/version.c b/src/version.c
index 28d3821e029..377e1d518e7 100644
--- a/src/version.c
+++ b/src/version.c
@@ -38,4 +38,4 @@
***************************************************************************/
extern const char build_version[];
-const char build_version[] = "0.143u9 ("__DATE__")";
+const char build_version[] = "0.144 ("__DATE__")";