mirror of
https://github.com/holub/mame
synced 2025-07-03 17:08:39 +03:00
Cleanups and version bump
This commit is contained in:
parent
bc5ffe4937
commit
efa3a679a3
@ -69,4 +69,3 @@ WRITE8_MEMBER(msx_cart_fs_sr022::write_cart)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -595,4 +595,3 @@ void emu_options::update_cached_options()
|
|||||||
m_sleep = bool_value(OPTION_SLEEP);
|
m_sleep = bool_value(OPTION_SLEEP);
|
||||||
m_refresh_speed = bool_value(OPTION_REFRESHSPEED);
|
m_refresh_speed = bool_value(OPTION_REFRESHSPEED);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -714,7 +714,6 @@ WRITE8_MEMBER(i8251_device::data_w)
|
|||||||
|
|
||||||
void i8251_device::receive_character(UINT8 ch)
|
void i8251_device::receive_character(UINT8 ch)
|
||||||
{
|
{
|
||||||
|
|
||||||
m_rx_data = ch;
|
m_rx_data = ch;
|
||||||
|
|
||||||
/* char has not been read and another has arrived! */
|
/* char has not been read and another has arrived! */
|
||||||
|
@ -19,7 +19,6 @@ const netlist::netlist_time netlist::netlist_time::zero = netlist::netlist_time:
|
|||||||
|
|
||||||
namespace netlist
|
namespace netlist
|
||||||
{
|
{
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------------------
|
||||||
// logic_family_ttl_t
|
// logic_family_ttl_t
|
||||||
// ----------------------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------------------
|
||||||
|
@ -264,4 +264,3 @@ pstream::pos_type pomemstream::vtell()
|
|||||||
{
|
{
|
||||||
return m_pos;
|
return m_pos;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -600,4 +600,3 @@ void pfmt::format_element(const char *f, const char *l, const char *fmt_spec, .
|
|||||||
|
|
||||||
template struct pstring_t<pu8_traits>;
|
template struct pstring_t<pu8_traits>;
|
||||||
template struct pstring_t<putf8_traits>;
|
template struct pstring_t<putf8_traits>;
|
||||||
|
|
||||||
|
@ -429,7 +429,6 @@ ATTR_HOT void matrix_solver_direct_t<m_N, _storage_N>::build_LE_RHS(nl_double *
|
|||||||
template <unsigned m_N, unsigned _storage_N>
|
template <unsigned m_N, unsigned _storage_N>
|
||||||
ATTR_HOT void matrix_solver_direct_t<m_N, _storage_N>::LE_solve()
|
ATTR_HOT void matrix_solver_direct_t<m_N, _storage_N>::LE_solve()
|
||||||
{
|
{
|
||||||
|
|
||||||
const unsigned kN = N();
|
const unsigned kN = N();
|
||||||
|
|
||||||
ATTR_UNUSED int imax;
|
ATTR_UNUSED int imax;
|
||||||
|
@ -272,7 +272,6 @@ PALETTE_INIT_MEMBER(spcforce_state, spcforce)
|
|||||||
|
|
||||||
INTERRUPT_GEN_MEMBER(spcforce_state::vblank_irq)
|
INTERRUPT_GEN_MEMBER(spcforce_state::vblank_irq)
|
||||||
{
|
{
|
||||||
|
|
||||||
if(m_irq_mask)
|
if(m_irq_mask)
|
||||||
device.execute().set_input_line(3, HOLD_LINE);
|
device.execute().set_input_line(3, HOLD_LINE);
|
||||||
}
|
}
|
||||||
|
@ -274,4 +274,3 @@ ROM_END
|
|||||||
/* GAME drivers **************************************************************/
|
/* GAME drivers **************************************************************/
|
||||||
|
|
||||||
GAME( 1989, xyonix, 0, xyonix, xyonix, driver_device, 0, ROT0, "Philko", "Xyonix", MACHINE_SUPPORTS_SAVE )
|
GAME( 1989, xyonix, 0, xyonix, xyonix, driver_device, 0, ROT0, "Philko", "Xyonix", MACHINE_SUPPORTS_SAVE )
|
||||||
|
|
||||||
|
@ -107,4 +107,3 @@ public:
|
|||||||
DECLARE_WRITE16_MEMBER(wrally2_adc_cs);
|
DECLARE_WRITE16_MEMBER(wrally2_adc_cs);
|
||||||
DECLARE_CUSTOM_INPUT_MEMBER(wrally2_analog_bit_r);
|
DECLARE_CUSTOM_INPUT_MEMBER(wrally2_analog_bit_r);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -119,4 +119,3 @@ void dc_controller_device::device_start()
|
|||||||
port[i] = ioport(port_tag[i]);
|
port[i] = ioport(port_tag[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2729,4 +2729,3 @@ bitgrphb
|
|||||||
tvgame
|
tvgame
|
||||||
aussieby
|
aussieby
|
||||||
hp_ipc
|
hp_ipc
|
||||||
|
|
||||||
|
@ -356,4 +356,3 @@ ROM_END
|
|||||||
|
|
||||||
|
|
||||||
COMP(1985, hp_ipc, 0, 0, hp_ipc, hp_ipc, driver_device, 0, "HP", "Integral Personal Computer", MACHINE_IS_SKELETON)
|
COMP(1985, hp_ipc, 0, 0, hp_ipc, hp_ipc, driver_device, 0, "HP", "Integral Personal Computer", MACHINE_IS_SKELETON)
|
||||||
|
|
||||||
|
@ -124,4 +124,3 @@ private:
|
|||||||
required_device<speaker_sound_device> m_speaker;
|
required_device<speaker_sound_device> m_speaker;
|
||||||
required_device<votrax_sc01_device> m_votrax;
|
required_device<votrax_sc01_device> m_votrax;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -194,4 +194,3 @@ MC6845_UPDATE_ROW( aussiebyte_state::crtc_update_row )
|
|||||||
*p++ = palette[BIT(gfx, 0)];
|
*p++ = palette[BIT(gfx, 0)];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#define BARE_BUILD_VERSION "0.164"
|
#define BARE_BUILD_VERSION "0.165"
|
||||||
|
|
||||||
extern const char bare_build_version[];
|
extern const char bare_build_version[];
|
||||||
extern const char build_version[];
|
extern const char build_version[];
|
||||||
|
Loading…
Reference in New Issue
Block a user