summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2011-12-24 21:49:38 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2011-12-24 21:49:38 +0000
commit7e812d10d32fb891c6ea7855ed5446c2c294595b (patch)
tree31ffcf10647e5e6a262439c1bca0f1b32166afd3
parent27ea28c63b15132d10888d4aead964f3718cfb23 (diff)
Clean-ups and version bumpmame0144u4
-rw-r--r--src/emu/clifront.c2
-rw-r--r--src/emu/image.c2
-rw-r--r--src/emu/machine/8042kbdc.c4
-rw-r--r--src/emu/machine/8042kbdc.h6
-rw-r--r--src/emu/machine/msm6242.c10
-rw-r--r--src/emu/softlist.c20
-rw-r--r--src/mame/drivers/alpha68k.c12
-rw-r--r--src/mame/drivers/calchase.c52
-rw-r--r--src/mame/drivers/dacholer.c16
-rw-r--r--src/mame/drivers/ddenlovr.c26
-rw-r--r--src/mame/drivers/gamtor.c2
-rw-r--r--src/mame/drivers/namconb1.c12
-rw-r--r--src/mame/drivers/neodrvr.c6
-rw-r--r--src/mame/drivers/photoply.c2
-rw-r--r--src/mame/drivers/ssingles.c12
-rw-r--r--src/mame/drivers/tourvis.c18
-rw-r--r--src/mame/machine/dc.c12
-rw-r--r--src/mame/video/system1.c4
-rw-r--r--src/osd/windows/windows.mak4
-rw-r--r--src/version.c2
20 files changed, 112 insertions, 112 deletions
diff --git a/src/emu/clifront.c b/src/emu/clifront.c
index 20f3c46cf92..5921f758c1b 100644
--- a/src/emu/clifront.c
+++ b/src/emu/clifront.c
@@ -231,7 +231,7 @@ int cli_frontend::execute(int argc, char **argv)
}
software_list_close(list);
-
+
if (found) break;
}
if (!found) {
diff --git a/src/emu/image.c b/src/emu/image.c
index 3e24e1a9eea..9de80eaf6af 100644
--- a/src/emu/image.c
+++ b/src/emu/image.c
@@ -238,7 +238,7 @@ void image_device_init(running_machine &machine)
}
}
}
-
+
for (bool gotone = machine.devicelist().first(image); gotone; gotone = image->next(image))
{
/* is an image specified for this image */
diff --git a/src/emu/machine/8042kbdc.c b/src/emu/machine/8042kbdc.c
index aa4d6e1efea..dc8fdf6dd34 100644
--- a/src/emu/machine/8042kbdc.c
+++ b/src/emu/machine/8042kbdc.c
@@ -269,7 +269,7 @@ static TIMER_CALLBACK( kbdc8042_clr_int )
{
/* Lets 8952's timers do their job before clear the interrupt line, */
/* else Keyboard interrupt never happens. */
- kbdc8042.keyboard_interrupt(machine, 0);
+ kbdc8042.keyboard_interrupt(machine, 0);
}
@@ -497,7 +497,7 @@ WRITE8_HANDLER(kbdc8042_8_w)
kbdc8042.speaker = data;
if (kbdc8042.set_spkr)
kbdc8042.set_spkr(space->machine(), kbdc8042.speaker);
-
+
break;
case 4:
diff --git a/src/emu/machine/8042kbdc.h b/src/emu/machine/8042kbdc.h
index 0a2bf5265ab..d638933fe21 100644
--- a/src/emu/machine/8042kbdc.h
+++ b/src/emu/machine/8042kbdc.h
@@ -25,9 +25,9 @@ struct kbdc8042_interface
void (*keyboard_interrupt)(running_machine &machine, int state);
void (*set_spkr)(running_machine &machine, int speaker);
int (*get_out2)(running_machine &machine);
-
-
-
+
+
+
};
diff --git a/src/emu/machine/msm6242.c b/src/emu/machine/msm6242.c
index 7699243e2f6..dd7bda24758 100644
--- a/src/emu/machine/msm6242.c
+++ b/src/emu/machine/msm6242.c
@@ -2,12 +2,12 @@
MSM6242 Real Time Clock
- Note:
- - this RTC has a y2k bug
+ Note:
+ - this RTC has a y2k bug
- TODO:
- - HOLD mechanism
- - IRQ ACK
+ TODO:
+ - HOLD mechanism
+ - IRQ ACK
***************************************************************************/
diff --git a/src/emu/softlist.c b/src/emu/softlist.c
index a4a99a56ac2..3f6e9df2305 100644
--- a/src/emu/softlist.c
+++ b/src/emu/softlist.c
@@ -1501,7 +1501,7 @@ static void find_software_item(const device_list &devlist, emu_options &options,
{
software_list_config *swlist = (software_list_config *)downcast<const legacy_device_base *>(swlists)->inline_config();
-
+
swlist_name = swlist->list_name;
if (swlist->list_type == SOFTWARE_LIST_ORIGINAL_SYSTEM)
@@ -1648,7 +1648,7 @@ bool load_software_part(emu_options &options, device_image_interface *image, con
for (software_part *swp = software_find_part(software_info_ptr, NULL, NULL); swp != NULL; swp = software_part_next(swp))
{
if (strcmp(software_part_ptr->name,swp->name)==0) *sw_part = new_part;
-
+
new_part->name = auto_strdup( image->device().machine(), swp->name );
if ( swp->interface_ )
new_part->interface_ = auto_strdup( image->device().machine(), swp->interface_ );
@@ -1675,14 +1675,14 @@ bool load_software_part(emu_options &options, device_image_interface *image, con
list = list->next;
}
new_list->next = NULL;
- }
+ }
new_part++;
}
/* Tell the world which part we actually loaded */
*full_sw_name = auto_alloc_array( image->device().machine(), char, strlen(swlist_name) + strlen(software_info_ptr->shortname) + strlen(software_part_ptr->name) + 3 );
sprintf( *full_sw_name, "%s:%s:%s", swlist_name, software_info_ptr->shortname, software_part_ptr->name );
-
+
for (device_t *swlists = image->device().machine().devicelist().first(SOFTWARE_LIST); swlists != NULL; swlists = swlists->typenext())
{
software_list_config *swlist = (software_list_config *)downcast<const legacy_device_base *>(swlists)->inline_config();
@@ -1693,7 +1693,7 @@ bool load_software_part(emu_options &options, device_image_interface *image, con
break;
}
}
-
+
{
const char *requirement = software_part_get_feature(software_part_ptr, "requirement");
if (requirement!=NULL) {
@@ -1703,13 +1703,13 @@ bool load_software_part(emu_options &options, device_image_interface *image, con
const char *req_swlist_name = NULL;
find_software_item(image->device().machine().devicelist(), options, NULL, requirement, &req_software_list_ptr, &req_software_info_ptr, &req_software_part_ptr, &req_swlist_name);
-
+
if ( req_software_list_ptr )
{
device_image_interface *req_image = NULL;
for (bool gotone = image->device().machine().devicelist().first(req_image); gotone; gotone = req_image->next(req_image))
{
- const char *interface = req_image->image_interface();
+ const char *interface = req_image->image_interface();
if (interface != NULL)
{
if (!strcmp(interface, req_software_part_ptr->interface_))
@@ -1721,15 +1721,15 @@ bool load_software_part(emu_options &options, device_image_interface *image, con
req_image->load(requirement);
}
break;
- }
+ }
}
}
software_list_close( req_software_list_ptr );
req_software_info_ptr = NULL;
req_software_list_ptr = NULL;
global_free(req_swlist_name);
- }
- }
+ }
+ }
}
}
diff --git a/src/mame/drivers/alpha68k.c b/src/mame/drivers/alpha68k.c
index 2a9569caa79..89a6f37f178 100644
--- a/src/mame/drivers/alpha68k.c
+++ b/src/mame/drivers/alpha68k.c
@@ -1965,11 +1965,11 @@ static MACHINE_START( alpha68k_II )
static ADDRESS_MAP_START( i8748_portmap, AS_IO, 8 )
-// AM_RANGE(MCS48_PORT_BUS, MCS48_PORT_BUS) AM_READ(saiyugoub1_mcu_command_r)
-// AM_RANGE(MCS48_PORT_T0, MCS48_PORT_T0) AM_DEVWRITE("adpcm", saiyugoub1_m5205_clk_w) /* Drives the clock on the m5205 at 1/8 of this frequency */
-// AM_RANGE(MCS48_PORT_T1, MCS48_PORT_T1) AM_READ(saiyugoub1_m5205_irq_r)
-// AM_RANGE(MCS48_PORT_P1, MCS48_PORT_P1) AM_WRITE(saiyugoub1_adpcm_rom_addr_w)
-// AM_RANGE(MCS48_PORT_P2, MCS48_PORT_P2) AM_DEVWRITE("adpcm", saiyugoub1_adpcm_control_w)
+// AM_RANGE(MCS48_PORT_BUS, MCS48_PORT_BUS) AM_READ(saiyugoub1_mcu_command_r)
+// AM_RANGE(MCS48_PORT_T0, MCS48_PORT_T0) AM_DEVWRITE("adpcm", saiyugoub1_m5205_clk_w) /* Drives the clock on the m5205 at 1/8 of this frequency */
+// AM_RANGE(MCS48_PORT_T1, MCS48_PORT_T1) AM_READ(saiyugoub1_m5205_irq_r)
+// AM_RANGE(MCS48_PORT_P1, MCS48_PORT_P1) AM_WRITE(saiyugoub1_adpcm_rom_addr_w)
+// AM_RANGE(MCS48_PORT_P2, MCS48_PORT_P2) AM_DEVWRITE("adpcm", saiyugoub1_adpcm_control_w)
ADDRESS_MAP_END
@@ -1988,7 +1988,7 @@ static MACHINE_CONFIG_START( sstingry, alpha68k_state )
MCFG_CPU_PERIODIC_INT(nmi_line_pulse, 4000)
MCFG_CPU_ADD("mcu", I8748, 9263750) /* 9.263750 MHz oscillator, divided by 3*5 internally */
-// MCFG_CPU_PROGRAM_MAP(i8748_map)
+// MCFG_CPU_PROGRAM_MAP(i8748_map)
MCFG_CPU_IO_MAP(i8748_portmap)
MCFG_DEVICE_DISABLE()
diff --git a/src/mame/drivers/calchase.c b/src/mame/drivers/calchase.c
index 9f89bb6cca5..69c73ea0521 100644
--- a/src/mame/drivers/calchase.c
+++ b/src/mame/drivers/calchase.c
@@ -87,7 +87,7 @@ Grull Osgo - Improvements
-Changes about BIOS memory management so ROM Shadow now works properly.
The changes are:
- Rom Memory Map remmapped to 128K size AM_RANGE(0xfffe0000, 0xffffffff) AM_ROM AM_REGION("bios", 0)
+ Rom Memory Map remmapped to 128K size AM_RANGE(0xfffe0000, 0xffffffff) AM_ROM AM_REGION("bios", 0)
-Changes in mtxc write handler and bios_ram write handler. Now The internal register access are
compatible with chipset VIA.
@@ -164,32 +164,32 @@ static VIDEO_START(calchase)
/*GRULL-ADDVGA
static SCREEN_UPDATE(calchase)
{
- calchase_state *state = screen->machine().driver_data<calchase_state>();
- int x,y,count,i;
+ calchase_state *state = screen->machine().driver_data<calchase_state>();
+ int x,y,count,i;
- bitmap_fill(bitmap,cliprect,get_black_pen(screen->machine()));
+ bitmap_fill(bitmap,cliprect,get_black_pen(screen->machine()));
- count = (0);
+ count = (0);
- for(y=0;y<256;y++)
- {
- for(x=0;x<320;x+=32)
- {
- for (i=0;i<32;i++)
- {
- UINT32 color;
+ for(y=0;y<256;y++)
+ {
+ for(x=0;x<320;x+=32)
+ {
+ for (i=0;i<32;i++)
+ {
+ UINT32 color;
- color = (state->m_vga_vram[count])>>(32-i) & 0x1;
+ color = (state->m_vga_vram[count])>>(32-i) & 0x1;
- if((x+i)<screen->visible_area().max_x && ((y)+0)<screen->visible_area().max_y)
- *BITMAP_ADDR32(bitmap, y, x+(32-i)) = screen->machine().pens[color];
+ if((x+i)<screen->visible_area().max_x && ((y)+0)<screen->visible_area().max_y)
+ *BITMAP_ADDR32(bitmap, y, x+(32-i)) = screen->machine().pens[color];
- }
+ }
- count++;
- }
- }
- return 0;
+ count++;
+ }
+ }
+ return 0;
}
*/
@@ -380,7 +380,7 @@ static void mxtc_config_w(device_t *busdevice, device_t *device, int function, i
//GRULLcase 0x59:
case 0x63: // PAM0
{
- //GRULLif (data & 0x10) // enable RAM access to region 0xf0000 - 0xfffff
+ //GRULLif (data & 0x10) // enable RAM access to region 0xf0000 - 0xfffff
if ((data & 0x50) | (data & 0xA0))
{
memory_set_bankptr(busdevice->machine(), "bank1", state->m_bios_ram);
@@ -512,7 +512,7 @@ static void intel82371ab_pci_w(device_t *busdevice, device_t *device, int functi
static WRITE32_HANDLER(bios_ram_w)
{
calchase_state *state = space->machine().driver_data<calchase_state>();
- //GRULLif (state->m_mxtc_config_reg[0x59] & 0x20) // write to RAM if this region is write-enabled
+ //GRULLif (state->m_mxtc_config_reg[0x59] & 0x20) // write to RAM if this region is write-enabled
if (state->m_mxtc_config_reg[0x63] & 0x50)
{
COMBINE_DATA(state->m_bios_ram + offset);
@@ -587,20 +587,20 @@ ADDRESS_MAP_END
/*GRULL-ADDVGA
static const gfx_layout CGA_charlayout =
{
- 8,8,
+ 8,8,
256,
1,
{ 0 },
{ 0,1,2,3,4,5,6,7 },
- { 0*8,1*8,2*8,3*8,4*8,5*8,6*8,7*8 },
+ { 0*8,1*8,2*8,3*8,4*8,5*8,6*8,7*8 },
8*8
};
*/
/*GRULL-ADDVGA
static GFXDECODE_START( CGA )
- GFXDECODE_ENTRY( "video_bios", 0x5182, CGA_charlayout, 0, 256 )
- //there's also a 8x16 entry (just after the 8x8)
+ GFXDECODE_ENTRY( "video_bios", 0x5182, CGA_charlayout, 0, 256 )
+ //there's also a 8x16 entry (just after the 8x8)
GFXDECODE_END
*/
diff --git a/src/mame/drivers/dacholer.c b/src/mame/drivers/dacholer.c
index 654418b8829..25051d6e34e 100644
--- a/src/mame/drivers/dacholer.c
+++ b/src/mame/drivers/dacholer.c
@@ -16,18 +16,18 @@
- just a guess - upper nibble of byte from port 3 _probably_
contains sound command (sound cpu writes it to port c)
- Itazura Tenshi (Japan Ver.)
- (c)1984 Nichibutsu / Alice
+ Itazura Tenshi (Japan Ver.)
+ (c)1984 Nichibutsu / Alice
- --- Team Japump!!! ---
- Dumped by Chack'n
- Driver written by Hau
+ --- Team Japump!!! ---
+ Dumped by Chack'n
+ Driver written by Hau
- based on driver from drivers/dacholer.c by Pierpaolo Prazzoli
- note:
- Sound test does not work.
+ based on driver from drivers/dacholer.c by Pierpaolo Prazzoli
+ note:
+ Sound test does not work.
******************************************************************************/
#include "emu.h"
diff --git a/src/mame/drivers/ddenlovr.c b/src/mame/drivers/ddenlovr.c
index 58bf100c13d..3b8425fe46b 100644
--- a/src/mame/drivers/ddenlovr.c
+++ b/src/mame/drivers/ddenlovr.c
@@ -7897,13 +7897,13 @@ MACHINE_CONFIG_END
static INTERRUPT_GEN( quizchq_irq )
{
dynax_state *state = device->machine().driver_data<dynax_state>();
-// int scanline = param;
+// int scanline = param;
/* I haven't found a irq ack register, so I need this kludge to
make sure I don't lose any interrupt generated by the blitter,
otherwise quizchq would lock up. */
-// if (downcast<cpu_device *>(state->m_maincpu)->input_state(0))
-// return;
+// if (downcast<cpu_device *>(state->m_maincpu)->input_state(0))
+// return;
device_set_input_line_and_vector(state->m_maincpu, 0, HOLD_LINE, 0xee);
}
@@ -7988,7 +7988,7 @@ static INTERRUPT_GEN( mmpanic_irq )
make sure I don't lose any interrupt generated by the blitter,
otherwise quizchq would lock up. */
//if (downcast<cpu_device *>(state->m_maincpu)->input_state(0))
- // return;
+ // return;
device_set_input_line_and_vector(state->m_maincpu, 0, HOLD_LINE, 0xcf); // RST 08, vblank
}
@@ -8074,7 +8074,7 @@ static INTERRUPT_GEN( hanakanz_irq )
make sure I don't lose any interrupt generated by the blitter,
otherwise quizchq would lock up. */
//if (downcast<cpu_device *>(state->m_maincpu)->input_state(0))
- // return;
+ // return;
device_set_input_line_and_vector(state->m_maincpu, 0, HOLD_LINE, 0xe0);
}
@@ -8087,7 +8087,7 @@ static WRITE_LINE_DEVICE_HANDLER(hanakanz_rtc_irq)
make sure I don't lose any interrupt generated by the blitter,
otherwise quizchq would lock up. */
//if (downcast<cpu_device *>(drvstate->m_maincpu)->input_state(0))
- // return;
+ // return;
device_set_input_line_and_vector(drvstate->m_maincpu, 0, HOLD_LINE, 0xe2);
}
@@ -8167,7 +8167,7 @@ static INTERRUPT_GEN( mjchuuka_irq )
make sure I don't lose any interrupt generated by the blitter,
otherwise quizchq would lock up. */
//if (downcast<cpu_device *>(state->m_maincpu)->input_state(0))
- // return;
+ // return;
device_set_input_line_and_vector(state->m_maincpu, 0, HOLD_LINE, 0xf8);
}
@@ -8180,7 +8180,7 @@ static WRITE_LINE_DEVICE_HANDLER(mjchuuka_rtc_irq)
make sure I don't lose any interrupt generated by the blitter,
otherwise quizchq would lock up. */
//if (downcast<cpu_device *>(drvstate->m_maincpu)->input_state(0))
- // return;
+ // return;
device_set_input_line_and_vector(drvstate->m_maincpu, 0, HOLD_LINE, 0xfa);
}
@@ -8277,7 +8277,7 @@ static WRITE_LINE_DEVICE_HANDLER(mjmyster_rtc_irq)
make sure I don't lose any interrupt generated by the blitter,
otherwise quizchq would lock up. */
//if (downcast<cpu_device *>(drvstate->m_maincpu)->input_state(0))
- // return;
+ // return;
device_set_input_line(drvstate->m_maincpu, INPUT_LINE_NMI, PULSE_LINE);
}
@@ -8321,13 +8321,13 @@ MACHINE_CONFIG_END
static INTERRUPT_GEN( hginga_irq )
{
dynax_state *state = device->machine().driver_data<dynax_state>();
-// int scanline = param;
+// int scanline = param;
/* I haven't found a irq ack register, so I need this kludge to
make sure I don't lose any interrupt generated by the blitter,
otherwise hginga would lock up. */
-// if (downcast<cpu_device *>(state->m_maincpu)->input_state(0))
-// return;
+// if (downcast<cpu_device *>(state->m_maincpu)->input_state(0))
+// return;
device_set_input_line_and_vector(state->m_maincpu, 0, HOLD_LINE, 0xf8);
}
@@ -8349,7 +8349,7 @@ static WRITE_LINE_DEVICE_HANDLER(hginga_rtc_irq)
make sure I don't lose any interrupt generated by the blitter,
otherwise quizchq would lock up. */
//if (downcast<cpu_device *>(drvstate->m_maincpu)->input_state(0))
- // return;
+ // return;
device_set_input_line_and_vector(drvstate->m_maincpu, 0, HOLD_LINE, 0xee);
}
diff --git a/src/mame/drivers/gamtor.c b/src/mame/drivers/gamtor.c
index 501a69b2cfb..d7caf3ed850 100644
--- a/src/mame/drivers/gamtor.c
+++ b/src/mame/drivers/gamtor.c
@@ -165,7 +165,7 @@ static ADDRESS_MAP_START( gaminator_map, AS_PROGRAM, 32 )
AM_RANGE(0x400003c4, 0x400003c7) AM_READWRITE( gamtor_unk4_r, gamtor_unk4_w )
AM_RANGE(0x400003c8, 0x400003cb) AM_DEVWRITE8_MODERN("ramdac", ramdac_device, index_w, 0x000000ff)
AM_RANGE(0x400003c8, 0x400003cb) AM_DEVWRITE8_MODERN("ramdac", ramdac_device, pal_w, 0x0000ff00)
-// AM_RANGE(0x400003c8, 0x400003cb) AM_DEVWRITE8_MODERN("ramdac", ramdac_device, mask_w, 0x00ff0000)
+// AM_RANGE(0x400003c8, 0x400003cb) AM_DEVWRITE8_MODERN("ramdac", ramdac_device, mask_w, 0x00ff0000)
AM_RANGE(0x400003cc, 0x400003cf) AM_WRITE( gamtor_unk6_w )
AM_RANGE(0x400003d4, 0x400003d7) AM_READWRITE( gamtor_unk2_r, gamtor_unk2_w )
AM_RANGE(0x400003d8, 0x400003fb) AM_READ( gamtor_unk7_r )
diff --git a/src/mame/drivers/namconb1.c b/src/mame/drivers/namconb1.c
index a2505220090..8e617d51068 100644
--- a/src/mame/drivers/namconb1.c
+++ b/src/mame/drivers/namconb1.c
@@ -1053,9 +1053,9 @@ static MACHINE_CONFIG_START( namconb1, namconb1_state )
/* TODO: irq generation for these */
MCFG_TIMER_ADD_SCANLINE("mcu_st", mcu_irq, "screen", 0, 1)
-// MCFG_TIMER_ADD_PERIODIC("mcu_irq0", mcu_irq0_cb, attotime::from_hz(60))
-// MCFG_TIMER_ADD_PERIODIC("mcu_irq2", mcu_irq2_cb, attotime::from_hz(60))
-// MCFG_TIMER_ADD_PERIODIC("mcu_adc", mcu_adc_cb, attotime::from_hz(60))
+// MCFG_TIMER_ADD_PERIODIC("mcu_irq0", mcu_irq0_cb, attotime::from_hz(60))
+// MCFG_TIMER_ADD_PERIODIC("mcu_irq2", mcu_irq2_cb, attotime::from_hz(60))
+// MCFG_TIMER_ADD_PERIODIC("mcu_adc", mcu_adc_cb, attotime::from_hz(60))
MCFG_NVRAM_HANDLER(namconb1)
MCFG_MACHINE_START(namconb)
@@ -1090,9 +1090,9 @@ static MACHINE_CONFIG_START( namconb2, namconb1_state )
MCFG_CPU_IO_MAP(namcoc75_io)
/* TODO: irq generation for these */
MCFG_TIMER_ADD_SCANLINE("mcu_st", mcu_irq, "screen", 0, 1)
-// MCFG_TIMER_ADD_PERIODIC("mcu_irq0", mcu_irq0_cb, attotime::from_hz(60))
-// MCFG_TIMER_ADD_PERIODIC("mcu_irq2", mcu_irq2_cb, attotime::from_hz(60))
-// MCFG_TIMER_ADD_PERIODIC("mcu_adc", mcu_adc_cb, attotime::from_hz(60))
+// MCFG_TIMER_ADD_PERIODIC("mcu_irq0", mcu_irq0_cb, attotime::from_hz(60))
+// MCFG_TIMER_ADD_PERIODIC("mcu_irq2", mcu_irq2_cb, attotime::from_hz(60))
+// MCFG_TIMER_ADD_PERIODIC("mcu_adc", mcu_adc_cb, attotime::from_hz(60))
MCFG_NVRAM_HANDLER(namconb1)
MCFG_MACHINE_START(namconb)
diff --git a/src/mame/drivers/neodrvr.c b/src/mame/drivers/neodrvr.c
index 7dcf7821a03..8fa6c08a956 100644
--- a/src/mame/drivers/neodrvr.c
+++ b/src/mame/drivers/neodrvr.c
@@ -876,14 +876,14 @@
Several early games have a 'feature' called "sphero symphony". None of the games featuring "sphero symphony"
uses special hardware. It is something sound based, but what exactly it is (specially arragend samples,
FM synthesis etc.) is unknown. The AES and MVS releases share the same sound data and driver.
-
+
The AES game-inserts and manuals have an eye-shaped logo with the following text (not to be found on MVS sets):
sphero
symphony
STEREOPHONIC SOUND
-
+
Experience this "LIVE" 3 dimensional sound coming from all around you.
-
+
Games featuring "sphero symphony":
ID-0006 - Riding Hero
ID-0007 - Alpha Mission II / ASO II - Last Guardian
diff --git a/src/mame/drivers/photoply.c b/src/mame/drivers/photoply.c
index 1882d995aa0..cc100a464fa 100644
--- a/src/mame/drivers/photoply.c
+++ b/src/mame/drivers/photoply.c
@@ -254,7 +254,7 @@ static ADDRESS_MAP_START( photoply_io, AS_IO, 32 )
AM_RANGE(0x0278, 0x027f) AM_RAM //parallel port 2
AM_RANGE(0x0378, 0x037f) AM_RAM //parallel port
AM_RANGE(0x03bc, 0x03bf) AM_RAM //parallel port 3
-// AM_RANGE(0x03f4, 0x03f7) AM_READ(kludge_r) // fdc
+// AM_RANGE(0x03f4, 0x03f7) AM_READ(kludge_r) // fdc
ADDRESS_MAP_END
#define AT_KEYB_HELPER(bit, text, key1) \
diff --git a/src/mame/drivers/ssingles.c b/src/mame/drivers/ssingles.c
index 4136c72dc55..0c378bdd6dd 100644
--- a/src/mame/drivers/ssingles.c
+++ b/src/mame/drivers/ssingles.c
@@ -409,11 +409,11 @@ static ADDRESS_MAP_START( atamanot_map, AS_PROGRAM, 8 )
AM_RANGE(0x0000, 0x3fff) AM_ROM
AM_RANGE(0x4000, 0x47ff) AM_RAM
AM_RANGE(0x6000, 0x60ff) AM_RAM //kanji tilemap?
-// AM_RANGE(0x6000, 0x7fff) AM_ROM
+// AM_RANGE(0x6000, 0x7fff) AM_ROM
AM_RANGE(0x8000, 0x83ff) AM_READ(atamanot_prot_r)
-// AM_RANGE(0x8000, 0x9fff) AM_ROM AM_REGION("question",0x10000)
-// AM_RANGE(0xc000, 0xc000) AM_READ( c000_r )
-// AM_RANGE(0xc001, 0xc001) AM_READWRITE( c001_r, c001_w )
+// AM_RANGE(0x8000, 0x9fff) AM_ROM AM_REGION("question",0x10000)
+// AM_RANGE(0xc000, 0xc000) AM_READ( c000_r )
+// AM_RANGE(0xc001, 0xc001) AM_READWRITE( c001_r, c001_w )
ADDRESS_MAP_END
static ADDRESS_MAP_START( ssingles_io_map, AS_IO, 8 )
@@ -426,7 +426,7 @@ static ADDRESS_MAP_START( ssingles_io_map, AS_IO, 8 )
AM_RANGE(0x16, 0x16) AM_READ_PORT("DSW0")
AM_RANGE(0x18, 0x18) AM_READ_PORT("DSW1")
AM_RANGE(0x1c, 0x1c) AM_READ_PORT("INPUTS")
-// AM_RANGE(0x1a, 0x1a) AM_WRITENOP //video/crt related
+// AM_RANGE(0x1a, 0x1a) AM_WRITENOP //video/crt related
AM_RANGE(0xfe, 0xfe) AM_DEVWRITE_MODERN("crtc", mc6845_device, address_w)
AM_RANGE(0xff, 0xff) AM_DEVWRITE_MODERN("crtc", mc6845_device, register_w)
ADDRESS_MAP_END
@@ -441,7 +441,7 @@ static ADDRESS_MAP_START( atamanot_io_map, AS_IO, 8 )
AM_RANGE(0x16, 0x16) AM_READ_PORT("DSW0")
AM_RANGE(0x18, 0x18) AM_READ_PORT("DSW1") AM_WRITE(atamanot_prot_w)
AM_RANGE(0x1c, 0x1c) AM_READ_PORT("INPUTS")
-// AM_RANGE(0x1a, 0x1a) AM_WRITENOP //video/crt related
+// AM_RANGE(0x1a, 0x1a) AM_WRITENOP //video/crt related
AM_RANGE(0xfe, 0xfe) AM_DEVWRITE_MODERN("crtc", mc6845_device, address_w)
AM_RANGE(0xff, 0xff) AM_DEVWRITE_MODERN("crtc", mc6845_device, register_w)
ADDRESS_MAP_END
diff --git a/src/mame/drivers/tourvis.c b/src/mame/drivers/tourvis.c
index 47c463e9133..99addabede1 100644
--- a/src/mame/drivers/tourvis.c
+++ b/src/mame/drivers/tourvis.c
@@ -3,11 +3,11 @@
TourVision
Driver by Mariusz Wojcieszek
- Bootleg PC-Engine based arcade board from the Spanish company TourVision.
- Two known hardware revisions, one with a sub-board with the PC-Engine chipset
- and the other as an integrated PCB.
+ Bootleg PC-Engine based arcade board from the Spanish company TourVision.
+ Two known hardware revisions, one with a sub-board with the PC-Engine chipset
+ and the other as an integrated PCB.
- Todo: complete jamma interface emulation.
+ Todo: complete jamma interface emulation.
_______________________________________________________________________________________________________________________________________________
| |
| ____________ ____________ ____________ ____________ |
@@ -71,7 +71,7 @@ JP107 = 2-pin connector
JP106 = 14-pin connector to 2-digit 7 segments display
JP105 = 16-pin connector (unknown functionality)
PT = Push-type switch
-BT1 = 3.6 V battery
+BT1 = 3.6 V battery
XT2 = 21.32825 MHz UNI 90-H
JP1-4 = Carts slots
@@ -226,11 +226,11 @@ Dumped directly from the cartridge edge connector using the following adapter:
+5V |02 02| +5V
A18 |03 03| +5V
A14 |04 04| A17
- A8 |05 05| A13
+ A8 |05 05| A13
A11 |06 06| A9
A10 |07 07| OE#
D7 |08 08| CE#
-(front of D5 |09 09| D6 (rear of
+(front of D5 |09 09| D6 (rear of
cartridge) D3 |10 10| D4 cartridge)
D2 |11 11| GND
D0 |12 12| D1
@@ -254,8 +254,8 @@ Dumped directly from the cartridge edge connector using the following adapter:
----------------------------------------------------------------------------
+----v----+
A19 | 1 32| +5V
- A16 | 2 31| A18
- A15 | 3 30| A17
+ A16 | 2 31| A18
+ A15 | 3 30| A17
A12 | 4 29| A14
A7 | 5 28| A13
A6 | 6 27| A8
diff --git a/src/mame/machine/dc.c b/src/mame/machine/dc.c
index 3584f06adaf..ba1e5e4dd69 100644
--- a/src/mame/machine/dc.c
+++ b/src/mame/machine/dc.c
@@ -455,7 +455,7 @@ WRITE64_HANDLER( dc_sysctrl_w )
READ64_HANDLER( dc_gdrom_r )
{
-// dc_state *state = space->machine().driver_data<dc_state>();
+// dc_state *state = space->machine().driver_data<dc_state>();
UINT32 off;
@@ -478,7 +478,7 @@ READ64_HANDLER( dc_gdrom_r )
WRITE64_HANDLER( dc_gdrom_w )
{
-// dc_state *state = space->machine().driver_data<dc_state>();
+// dc_state *state = space->machine().driver_data<dc_state>();
UINT32 dat,off;
if ((int)~mem_mask & 1)
@@ -656,7 +656,7 @@ WRITE64_HANDLER( pvr_ctrl_w )
READ64_HANDLER( dc_modem_r )
{
-// dc_state *state = space->machine().driver_data<dc_state>();
+// dc_state *state = space->machine().driver_data<dc_state>();
int reg;
UINT64 shift;
@@ -675,7 +675,7 @@ READ64_HANDLER( dc_modem_r )
WRITE64_HANDLER( dc_modem_w )
{
-// dc_state *state = space->machine().driver_data<dc_state>();
+// dc_state *state = space->machine().driver_data<dc_state>();
int reg;
UINT64 shift;
UINT32 dat;
@@ -829,7 +829,7 @@ MACHINE_RESET( dc )
READ64_DEVICE_HANDLER( dc_aica_reg_r )
{
- // dc_state *state = device->machine().driver_data<dc_state>();
+ // dc_state *state = device->machine().driver_data<dc_state>();
//int reg;
UINT64 shift;
@@ -842,7 +842,7 @@ READ64_DEVICE_HANDLER( dc_aica_reg_r )
WRITE64_DEVICE_HANDLER( dc_aica_reg_w )
{
- // dc_state *state = device->machine().driver_data<dc_state>();
+ // dc_state *state = device->machine().driver_data<dc_state>();
int reg;
UINT64 shift;
UINT32 dat;
diff --git a/src/mame/video/system1.c b/src/mame/video/system1.c
index 60bbb461470..03e289a2eef 100644
--- a/src/mame/video/system1.c
+++ b/src/mame/video/system1.c
@@ -458,7 +458,7 @@ static void draw_sprites(running_machine &machine, bitmap_t *bitmap, const recta
if (effx >= cliprect->min_x && effx <= cliprect->max_x)
{
int prevpix = destbase[effx];
-
+
if ((prevpix & 0x0f) != 0)
state->m_sprite_collide[((prevpix >> 4) & 0x1f) + 32 * spritenum] = state->m_sprite_collide_summary = 1;
destbase[effx] = color1 | palettebase;
@@ -479,7 +479,7 @@ static void draw_sprites(running_machine &machine, bitmap_t *bitmap, const recta
if (effx >= cliprect->min_x && effx <= cliprect->max_x)
{
int prevpix = destbase[effx];
-
+
if ((prevpix & 0x0f) != 0)
state->m_sprite_collide[((prevpix >> 4) & 0x1f) + 32 * spritenum] = state->m_sprite_collide_summary = 1;
destbase[effx] = color2 | palettebase;
diff --git a/src/osd/windows/windows.mak b/src/osd/windows/windows.mak
index 2103cfce255..08f049f2f07 100644
--- a/src/osd/windows/windows.mak
+++ b/src/osd/windows/windows.mak
@@ -247,10 +247,10 @@ endif
# ensure we statically link the gcc runtime lib
LDFLAGS += -static-libgcc
TEST_GCC = $(shell gcc --version)
-ifeq ($(findstring 4.4,$(TEST_GCC)),)
+ifeq ($(findstring 4.4,$(TEST_GCC)),)
#if we use new tools
LDFLAGS += -static-libstdc++
-endif
+endif
# add the windows libraries
LIBS += -luser32 -lgdi32 -ldsound -ldxguid -lwinmm -ladvapi32 -lcomctl32 -lshlwapi -ldinput8 -lwsock32
diff --git a/src/version.c b/src/version.c
index 90edae70b64..be204e39d20 100644
--- a/src/version.c
+++ b/src/version.c
@@ -38,4 +38,4 @@
***************************************************************************/
extern const char build_version[];
-const char build_version[] = "0.144u3 ("__DATE__")";
+const char build_version[] = "0.144u4 ("__DATE__")";