summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2011-12-14 21:33:51 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2011-12-14 21:33:51 +0000
commitf0649b4e222ca5d27920c589491f3793ed78c844 (patch)
treed1baf0487de78217f93dc7272b3972173501ce54
parentf1103768b5b338d12e5c0e4605ef4cc40a73820b (diff)
cleanups and version bumpmame0144u3
-rw-r--r--src/emu/cpu/hd61700/hd61700.c2
-rw-r--r--src/emu/network.c2
-rw-r--r--src/emu/uimain.c12
-rw-r--r--src/emu/video/pc_vga.c2
-rw-r--r--src/mame/drivers/cesclass.c24
-rw-r--r--src/mame/drivers/cps2.c8
-rw-r--r--src/mame/drivers/ggconnie.c2
-rw-r--r--src/mame/drivers/ikki.c2
-rw-r--r--src/mame/drivers/kaneko16.c6
-rw-r--r--src/mame/drivers/metro.c2
-rw-r--r--src/mame/drivers/model3.c2
-rw-r--r--src/mame/drivers/mystwarr.c4
-rw-r--r--src/mame/drivers/nemesis.c2
-rw-r--r--src/mame/drivers/pgm.c20
-rw-r--r--src/mame/drivers/pntnpuzl.c14
-rw-r--r--src/mame/drivers/strnskil.c2
-rw-r--r--src/mame/drivers/suna16.c2
-rw-r--r--src/mame/drivers/toypop.c4
-rw-r--r--src/mame/drivers/uapce.c8
-rw-r--r--src/mame/drivers/xexex.c2
-rw-r--r--src/osd/osdnet.c2
-rw-r--r--src/version.c2
22 files changed, 63 insertions, 63 deletions
diff --git a/src/emu/cpu/hd61700/hd61700.c b/src/emu/cpu/hd61700/hd61700.c
index ff3fa1fb5fc..31b3b88d266 100644
--- a/src/emu/cpu/hd61700/hd61700.c
+++ b/src/emu/cpu/hd61700/hd61700.c
@@ -103,7 +103,7 @@ hd61700_cpu_device::hd61700_cpu_device(const machine_config &mconfig, const char
: cpu_device(mconfig, HD61700, "HD61700", tag, owner, clock),
m_program_config("program", ENDIANNESS_BIG, 16, 18, -1)
{
-// memset(&m_partial_frame_period, 0, sizeof(m_partial_frame_period));
+ // ...
}
diff --git a/src/emu/network.c b/src/emu/network.c
index a0581350f25..cd44270c556 100644
--- a/src/emu/network.c
+++ b/src/emu/network.c
@@ -45,7 +45,7 @@ static void network_load(running_machine &machine, int config_type, xml_data_nod
for (int i=0;i<6;i++) mac[i]=mac_num[i];
network->set_mac(mac);
}
-
+
}
}
}
diff --git a/src/emu/uimain.c b/src/emu/uimain.c
index 4f7c00a8889..30d42c86e5e 100644
--- a/src/emu/uimain.c
+++ b/src/emu/uimain.c
@@ -129,8 +129,8 @@ void ui_menu_main::populate()
}
/* add input menu items */
- item_append("Input (general)", NULL, 0, (void *)INPUT_GROUPS);
-
+ item_append("Input (general)", NULL, 0, (void *)INPUT_GROUPS);
+
menu_text.printf("Input (this %s)",emulator_info::get_capstartgamenoun());
item_append(menu_text.cstr(), NULL, 0, (void *)INPUT_SPECIFIC);
@@ -493,11 +493,11 @@ void ui_menu_network_devices::populate()
if(entry->id==curr) {
title = entry->description;
break;
- }
+ }
entry = entry->m_next;
}
-
- item_append(network->device().tag(), (title) ? title : "------", MENU_FLAG_LEFT_ARROW | MENU_FLAG_RIGHT_ARROW, (void *)network);
+
+ item_append(network->device().tag(), (title) ? title : "------", MENU_FLAG_LEFT_ARROW | MENU_FLAG_RIGHT_ARROW, (void *)network);
}
}
@@ -2063,7 +2063,7 @@ ui_menu_video_options::ui_menu_video_options(running_machine &machine, render_co
void ui_menu_video_options::populate()
{
- const char *subtext = "";
+ const char *subtext = "";
astring tempstring;
int viewnum;
int enabled;
diff --git a/src/emu/video/pc_vga.c b/src/emu/video/pc_vga.c
index ff701524990..8064673a39c 100644
--- a/src/emu/video/pc_vga.c
+++ b/src/emu/video/pc_vga.c
@@ -958,7 +958,7 @@ void pc_vga_init(running_machine &machine, const struct pc_vga_interface *vga_in
memset(vga.gc.data, '\0', vga.svga_intf.gc_regcount);
buswidth = downcast<legacy_cpu_device *>(machine.firstcpu)->space_config(AS_PROGRAM)->m_databus_width;
-// mem_space = machine.firstcpu->memory().space(vga.vga_intf.mem_addressspace);
+// mem_space = machine.firstcpu->memory().space(vga.vga_intf.mem_addressspace);
io_space = machine.firstcpu->memory().space(vga.vga_intf.port_addressspace);
switch(buswidth)
{
diff --git a/src/mame/drivers/cesclass.c b/src/mame/drivers/cesclass.c
index 326b87bbd77..cace3843612 100644
--- a/src/mame/drivers/cesclass.c
+++ b/src/mame/drivers/cesclass.c
@@ -2,15 +2,15 @@
CES Classic wall games
- driver by Angelo Salese
+ driver by Angelo Salese
- Notes:
- - to play Home Run Classic you have to select a pitcher shot and keep pressed the
- wall strobe. When you release the strobe, batter does the swing.
+ Notes:
+ - to play Home Run Classic you have to select a pitcher shot and keep pressed the
+ wall strobe. When you release the strobe, batter does the swing.
- TODO:
- - custom layout for dual LCDs
- - artwork and lamps position needed to make progresses
+ TODO:
+ - custom layout for dual LCDs
+ - artwork and lamps position needed to make progresses
- U43 and U44 bad in Trap Shoot Classic
- games are incredibly sluggish by now
- irq sources are unknown
@@ -106,10 +106,10 @@ WRITE16_MEMBER( cesclassic_state::lamps_w )
WRITE16_MEMBER( cesclassic_state::outputs_w )
{
/*
- -x-- ---- OKI bankswitch
- --x- ---- probably screen enable
- ---- --x- coin counter
- */
+ -x-- ---- OKI bankswitch
+ --x- ---- probably screen enable
+ ---- --x- coin counter
+ */
m_oki->set_bank_base((data & 0x40) ? 0x40000 : 0);
coin_counter_w(machine(), 0, data & 2);
if(data & ~0x62)
@@ -126,7 +126,7 @@ static ADDRESS_MAP_START( cesclassic_map, AS_PROGRAM, 16, cesclassic_state )
AM_RANGE(0x480000, 0x481fff) AM_RAM AM_SHARE("nvram") //8k according to schematics (games doesn't use that much tho)
AM_RANGE(0x600000, 0x600001) AM_READ_PORT("SYSTEM")
AM_RANGE(0x610000, 0x610001) AM_WRITE(outputs_w)
-// AM_RANGE(0x640000, 0x640001) AM_WRITENOP
+// AM_RANGE(0x640000, 0x640001) AM_WRITENOP
AM_RANGE(0x640040, 0x640041) AM_WRITE(lamps_w)
AM_RANGE(0x670000, 0x670001) AM_READ_PORT("DSW")
AM_RANGE(0x70ff00, 0x70ff01) AM_WRITENOP // writes 0xffff at irq 3 end of service, watchdog?
diff --git a/src/mame/drivers/cps2.c b/src/mame/drivers/cps2.c
index a5df171e36b..e596af1f304 100644
--- a/src/mame/drivers/cps2.c
+++ b/src/mame/drivers/cps2.c
@@ -635,7 +635,7 @@ static TIMER_DEVICE_CALLBACK( cps2_interrupt )
if (state->m_cps_b_regs[0x12 / 2] & 0x8000)
state->m_cps_b_regs[0x12 / 2] &= 0x1ff;
-// popmessage("%04x %04x - %04x %04x",state->m_scanline1,state->m_scanline2,state->m_cps_b_regs[0x10/2],state->m_cps_b_regs[0x12/2]);
+// popmessage("%04x %04x - %04x %04x",state->m_scanline1,state->m_scanline2,state->m_cps_b_regs[0x10/2],state->m_cps_b_regs[0x12/2]);
/* raster effects */
if (state->m_scanline1 == param || (state->m_scanline1 < param && !state->m_scancalls))
@@ -645,7 +645,7 @@ static TIMER_DEVICE_CALLBACK( cps2_interrupt )
cps2_set_sprite_priorities(timer.machine());
timer.machine().primary_screen->update_partial(param);
state->m_scancalls++;
-// popmessage("IRQ4 scancounter = %04i", param);
+// popmessage("IRQ4 scancounter = %04i", param);
}
/* raster effects */
@@ -656,7 +656,7 @@ static TIMER_DEVICE_CALLBACK( cps2_interrupt )
cps2_set_sprite_priorities(timer.machine());
timer.machine().primary_screen->update_partial(param);
state->m_scancalls++;
-// popmessage("IRQ4 scancounter = %04i", param);
+// popmessage("IRQ4 scancounter = %04i", param);
}
if (param == 240) /* VBlank */
@@ -671,7 +671,7 @@ static TIMER_DEVICE_CALLBACK( cps2_interrupt )
}
cps2_objram_latch(timer.machine());
}
-// popmessage("Raster calls = %i", state->m_scancalls);
+// popmessage("Raster calls = %i", state->m_scancalls);
}
diff --git a/src/mame/drivers/ggconnie.c b/src/mame/drivers/ggconnie.c
index 4d143055465..9bd602de1fe 100644
--- a/src/mame/drivers/ggconnie.c
+++ b/src/mame/drivers/ggconnie.c
@@ -159,7 +159,7 @@ static MACHINE_CONFIG_START( ggconnie, ggconnie_state )
MCFG_CPU_IO_MAP(sgx_io)
MCFG_TIMER_ADD_SCANLINE("scantimer", sgx_interrupt, "screen", 0, 1)
-// MCFG_QUANTUM_TIME(attotime::from_hz(60))
+// MCFG_QUANTUM_TIME(attotime::from_hz(60))
/* video hardware */
diff --git a/src/mame/drivers/ikki.c b/src/mame/drivers/ikki.c
index 23fd693dc01..63da5115444 100644
--- a/src/mame/drivers/ikki.c
+++ b/src/mame/drivers/ikki.c
@@ -259,7 +259,7 @@ static MACHINE_CONFIG_START( ikki, ikki_state )
/* video hardware */
MCFG_SCREEN_ADD("screen", RASTER)
-// MCFG_SCREEN_RAW_PARAMS(PIXEL_CLOCK, HTOTAL, HBEND, HBSTART, VTOTAL, VBEND, VBSTART)
+// MCFG_SCREEN_RAW_PARAMS(PIXEL_CLOCK, HTOTAL, HBEND, HBSTART, VTOTAL, VBEND, VBSTART)
MCFG_SCREEN_REFRESH_RATE(60)
MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(2500) /* not accurate */)
MCFG_SCREEN_FORMAT(BITMAP_FORMAT_INDEXED16)
diff --git a/src/mame/drivers/kaneko16.c b/src/mame/drivers/kaneko16.c
index f19c5859a99..281b9eda4ab 100644
--- a/src/mame/drivers/kaneko16.c
+++ b/src/mame/drivers/kaneko16.c
@@ -1753,10 +1753,10 @@ GFXDECODE_END
***************************************************************************/
/*
- TODO:
- Fix this arrangement (specific for Bonk's Adventure)!
+ TODO:
+ Fix this arrangement (specific for Bonk's Adventure)!
- pre-deprecat lib note says:
+ pre-deprecat lib note says:
Even though 3 interrupts are triggered, I set an int_num of 4. (notice '+1')
I agree that it is kind of a misuse of the function, but I haven't found
clues in code on how interrupts are scheduled...
diff --git a/src/mame/drivers/metro.c b/src/mame/drivers/metro.c
index 6511de55d55..272584c2111 100644
--- a/src/mame/drivers/metro.c
+++ b/src/mame/drivers/metro.c
@@ -4110,7 +4110,7 @@ static MACHINE_CONFIG_START( pururun, metro_state )
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", M68000, XTAL_24MHz/2) /* Not confirmed */
MCFG_CPU_PROGRAM_MAP(pururun_map)
-// MCFG_TIMER_ADD_SCANLINE("scantimer", msgogo_interrupt, "screen", 0, 1) /* fixes the title screen scroll in GunMaster, but makes the game painfully slow */
+// MCFG_TIMER_ADD_SCANLINE("scantimer", msgogo_interrupt, "screen", 0, 1) /* fixes the title screen scroll in GunMaster, but makes the game painfully slow */
MCFG_TIMER_ADD_SCANLINE("scantimer", metro_interrupt, "screen", 0, 1) /* ? */
MCFG_CPU_ADD("audiocpu", UPD7810, XTAL_24MHz/2) /* Not confiremd */
diff --git a/src/mame/drivers/model3.c b/src/mame/drivers/model3.c
index 2037c821ec0..7dd9767a06b 100644
--- a/src/mame/drivers/model3.c
+++ b/src/mame/drivers/model3.c
@@ -5134,7 +5134,7 @@ static const scsp_interface scsp2_interface =
*/
static TIMER_DEVICE_CALLBACK(model3_interrupt)
{
-// model3_state *state = timer.machine().driver_data<model3_state>();
+// model3_state *state = timer.machine().driver_data<model3_state>();
int scanline = param;
if (scanline == 384)
diff --git a/src/mame/drivers/mystwarr.c b/src/mame/drivers/mystwarr.c
index 882e85301c4..9d8edaed765 100644
--- a/src/mame/drivers/mystwarr.c
+++ b/src/mame/drivers/mystwarr.c
@@ -118,7 +118,7 @@ static TIMER_DEVICE_CALLBACK(mystwarr_interrupt)
device_set_input_line(state->m_maincpu, M68K_IRQ_4, HOLD_LINE);
/* writes to LSB of 0x410000 port and clears a work RAM flag, almost likely not really necessary. */
-// device_set_input_line(state->m_maincpu, M68K_IRQ_6, HOLD_LINE);
+// device_set_input_line(state->m_maincpu, M68K_IRQ_6, HOLD_LINE);
}
static TIMER_DEVICE_CALLBACK(metamrph_interrupt)
@@ -127,7 +127,7 @@ static TIMER_DEVICE_CALLBACK(metamrph_interrupt)
int scanline = param;
/* irq 4 has an irq routine in metamrph, but it's not really called */
-// device_set_input_line(state->m_maincpu, M68K_IRQ_4, HOLD_LINE);
+// device_set_input_line(state->m_maincpu, M68K_IRQ_4, HOLD_LINE);
if(scanline == 24)
device_set_input_line(state->m_maincpu, M68K_IRQ_6, HOLD_LINE);
diff --git a/src/mame/drivers/nemesis.c b/src/mame/drivers/nemesis.c
index 34e449952dc..7d484b112ee 100644
--- a/src/mame/drivers/nemesis.c
+++ b/src/mame/drivers/nemesis.c
@@ -2818,7 +2818,7 @@ static MACHINE_CONFIG_START( bubsys, nemesis_state )
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", M68000,18432000/2) /* 9.216MHz */
MCFG_CPU_PROGRAM_MAP(gx400_map)
-// MCFG_TIMER_ADD_SCANLINE("scantimer", gx400_interrupt, "screen", 0, 1)
+// MCFG_TIMER_ADD_SCANLINE("scantimer", gx400_interrupt, "screen", 0, 1)
MCFG_DEVICE_DISABLE()
MCFG_CPU_ADD("audiocpu", Z80,14318180/4) /* 3.579545 MHz */
diff --git a/src/mame/drivers/pgm.c b/src/mame/drivers/pgm.c
index e74229b73ec..8de9735eb7d 100644
--- a/src/mame/drivers/pgm.c
+++ b/src/mame/drivers/pgm.c
@@ -1283,29 +1283,29 @@ static MACHINE_START( pgm )
{
pgm_state *state = machine.driver_data<pgm_state>();
-// machine.base_datetime(state->m_systime);
+// machine.base_datetime(state->m_systime);
state->m_maincpu = machine.device<cpu_device>("maincpu");
state->m_soundcpu = machine.device<cpu_device>("soundcpu");
state->m_prot = machine.device<cpu_device>("prot");
state->m_ics = machine.device("ics");
-// state->save_item(NAME(state->m_cal_val));
-// state->save_item(NAME(state->m_cal_mask));
-// state->save_item(NAME(state->m_cal_com));
-// state->save_item(NAME(state->m_cal_cnt));
+// state->save_item(NAME(state->m_cal_val));
+// state->save_item(NAME(state->m_cal_mask));
+// state->save_item(NAME(state->m_cal_com));
+// state->save_item(NAME(state->m_cal_cnt));
}
static MACHINE_RESET( pgm )
{
-// pgm_state *state = machine.driver_data<pgm_state>();
+// pgm_state *state = machine.driver_data<pgm_state>();
cputag_set_input_line(machine, "soundcpu", INPUT_LINE_HALT, ASSERT_LINE);
-// state->m_cal_val = 0;
-// state->m_cal_mask = 0;
-// state->m_cal_com = 0;
-// state->m_cal_cnt = 0;
+// state->m_cal_val = 0;
+// state->m_cal_mask = 0;
+// state->m_cal_com = 0;
+// state->m_cal_cnt = 0;
}
diff --git a/src/mame/drivers/pntnpuzl.c b/src/mame/drivers/pntnpuzl.c
index 06c32ba696e..e3f18779dc4 100644
--- a/src/mame/drivers/pntnpuzl.c
+++ b/src/mame/drivers/pntnpuzl.c
@@ -266,22 +266,22 @@ static READ16_HANDLER( pntnpuzl_28001a_r )
static READ16_HANDLER( irq1_ack_r )
{
-// pntnpuzl_state *state = space->machine().driver_data<pntnpuzl_state>();
-// device_set_input_line(state->m_maincpu, 1, CLEAR_LINE);
+// pntnpuzl_state *state = space->machine().driver_data<pntnpuzl_state>();
+// device_set_input_line(state->m_maincpu, 1, CLEAR_LINE);
return 0;
}
static READ16_HANDLER( irq2_ack_r )
{
-// pntnpuzl_state *state = space->machine().driver_data<pntnpuzl_state>();
-// device_set_input_line(state->m_maincpu, 2, CLEAR_LINE);
+// pntnpuzl_state *state = space->machine().driver_data<pntnpuzl_state>();
+// device_set_input_line(state->m_maincpu, 2, CLEAR_LINE);
return 0;
}
static READ16_HANDLER( irq4_ack_r )
{
-// pntnpuzl_state *state = space->machine().driver_data<pntnpuzl_state>();
-// device_set_input_line(state->m_maincpu, 4, CLEAR_LINE);
+// pntnpuzl_state *state = space->machine().driver_data<pntnpuzl_state>();
+// device_set_input_line(state->m_maincpu, 4, CLEAR_LINE);
return 0;
}
@@ -307,7 +307,7 @@ static ADDRESS_MAP_START( pntnpuzl_map, AS_PROGRAM, 16 )
/* standard VGA */
AM_RANGE(0x3a0000, 0x3bffff) AM_RAM // RAM
-// AM_RANGE(0x3c0000, 0x3c0fff) AM_RAM // regs
+// AM_RANGE(0x3c0000, 0x3c0fff) AM_RAM // regs
AM_RANGE(0x400000, 0x407fff) AM_RAM
ADDRESS_MAP_END
diff --git a/src/mame/drivers/strnskil.c b/src/mame/drivers/strnskil.c
index a142684a1e6..21daf70067a 100644
--- a/src/mame/drivers/strnskil.c
+++ b/src/mame/drivers/strnskil.c
@@ -343,7 +343,7 @@ static MACHINE_CONFIG_START( strnskil, strnskil_state )
MCFG_CPU_PROGRAM_MAP(strnskil_map2)
MCFG_CPU_PERIODIC_INT(irq0_line_hold,2*60)
-// MCFG_QUANTUM_PERFECT_CPU("maincpu")
+// MCFG_QUANTUM_PERFECT_CPU("maincpu")
MCFG_QUANTUM_TIME(attotime::from_hz(6000))
/* video hardware */
diff --git a/src/mame/drivers/suna16.c b/src/mame/drivers/suna16.c
index d004ad9b3cf..194fa2eedb8 100644
--- a/src/mame/drivers/suna16.c
+++ b/src/mame/drivers/suna16.c
@@ -748,7 +748,7 @@ static TIMER_DEVICE_CALLBACK( bssoccer_interrupt )
device_set_input_line(state->m_maincpu, 1, HOLD_LINE);
if(scanline == 0)
- device_set_input_line(state->m_maincpu, 2, HOLD_LINE); // does RAM to sprite buffer copy here
+ device_set_input_line(state->m_maincpu, 2, HOLD_LINE); // does RAM to sprite buffer copy here
}
static MACHINE_CONFIG_START( bssoccer, suna16_state )
diff --git a/src/mame/drivers/toypop.c b/src/mame/drivers/toypop.c
index 2eb8137b2c2..e6ee35ef8fa 100644
--- a/src/mame/drivers/toypop.c
+++ b/src/mame/drivers/toypop.c
@@ -70,14 +70,14 @@ static WRITE8_HANDLER( toypop_main_interrupt_disable_w )
{
toypop_state *state = space->machine().driver_data<toypop_state>();
state->m_main_irq_mask = 0;
-// cputag_set_input_line(space->machine(), "maincpu", 0, CLEAR_LINE);
+// cputag_set_input_line(space->machine(), "maincpu", 0, CLEAR_LINE);
}
static WRITE8_HANDLER( toypop_sound_interrupt_enable_acknowledge_w )
{
toypop_state *state = space->machine().driver_data<toypop_state>();
state->m_sound_irq_mask = 1;
-// cputag_set_input_line(space->machine(), "audiocpu", 0, CLEAR_LINE);
+// cputag_set_input_line(space->machine(), "audiocpu", 0, CLEAR_LINE);
}
static WRITE8_HANDLER( toypop_sound_interrupt_disable_w )
diff --git a/src/mame/drivers/uapce.c b/src/mame/drivers/uapce.c
index 06c45063357..affb788ce73 100644
--- a/src/mame/drivers/uapce.c
+++ b/src/mame/drivers/uapce.c
@@ -31,8 +31,8 @@
-x1 Victory Run standardd Hucard
-x1 Plexiglass control panel overlay (used)
-In the February 1990 issue of Video Games & Computer Entertainment magazine, there was a list of
-all of the available UA produced Hu-Cards (at the current time of the article was published).
+In the February 1990 issue of Video Games & Computer Entertainment magazine, there was a list of
+all of the available UA produced Hu-Cards (at the current time of the article was published).
The article mentions that the UA Hu-Cards were not compatible with the TG-16 gaming console.
- Keith Courage in the Alpha Zones
- World Class Baseball
@@ -85,7 +85,7 @@ console rather than a TurboGrafx-16, which would cause the region check to
fail.
-Keith Courage In Alpha Zones: dump was made from PC-Engine game dump of US version,
+Keith Courage In Alpha Zones: dump was made from PC-Engine game dump of US version,
with region check nop'ed out.
Alien Crush & Pac_Land: dumps made from PC-Engine dumps of JP versions
*/
@@ -141,7 +141,7 @@ static WRITE8_HANDLER( jamma_if_control_latch_w )
C = JAMMA pin 'z'
E = Ground
- Pin 'z' is a normally ground connection, but on this board it is isolated from ground.
+ Pin 'z' is a normally ground connection, but on this board it is isolated from ground.
The wiring harness also has the corresponding wire separate from the others. */
coin_counter_w(space->machine(), 0, BIT(data,5));
diff --git a/src/mame/drivers/xexex.c b/src/mame/drivers/xexex.c
index ebbcd88e330..4a97db0536d 100644
--- a/src/mame/drivers/xexex.c
+++ b/src/mame/drivers/xexex.c
@@ -339,7 +339,7 @@ static ADDRESS_MAP_START( main_map, AS_PROGRAM, 16 )
AM_RANGE(0x0c8000, 0x0c800f) AM_DEVREADWRITE_MODERN("k053250", k053250_t, reg_r, reg_w)
AM_RANGE(0x0ca000, 0x0ca01f) AM_DEVWRITE("k054338", k054338_word_w) // CLTC
AM_RANGE(0x0cc000, 0x0cc01f) AM_DEVWRITE("k053251", k053251_lsb_w) // priority encoder
-// AM_RANGE(0x0d0000, 0x0d001f) AM_DEVREADWRITE8("k053252", k053252_r,k053252_w,0x00ff) // CCU
+// AM_RANGE(0x0d0000, 0x0d001f) AM_DEVREADWRITE8("k053252", k053252_r,k053252_w,0x00ff) // CCU
AM_RANGE(0x0d4000, 0x0d4001) AM_WRITE(sound_irq_w)
AM_RANGE(0x0d600c, 0x0d600d) AM_WRITE(sound_cmd1_w)
AM_RANGE(0x0d600e, 0x0d600f) AM_WRITE(sound_cmd2_w)
diff --git a/src/osd/osdnet.c b/src/osd/osdnet.c
index 21c8774ea03..d4094c58c2d 100644
--- a/src/osd/osdnet.c
+++ b/src/osd/osdnet.c
@@ -20,7 +20,7 @@ void clear_netdev()
netdev_list.reset();
}
-const netdev_entry_t *netdev_first() {
+const netdev_entry_t *netdev_first() {
return netdev_list.first();
}
diff --git a/src/version.c b/src/version.c
index 4e2591f7ff9..90edae70b64 100644
--- a/src/version.c
+++ b/src/version.c
@@ -38,4 +38,4 @@
***************************************************************************/
extern const char build_version[];
-const char build_version[] = "0.144u2 ("__DATE__")";
+const char build_version[] = "0.144u3 ("__DATE__")";