mirror of
https://github.com/holub/mame
synced 2025-10-06 17:08:28 +03:00
Cleanups and version bump
This commit is contained in:
parent
64219f27d2
commit
76b978d039
@ -34882,5 +34882,3 @@ void m68ki_build_opcode_table(void)
|
|||||||
/* ======================================================================== */
|
/* ======================================================================== */
|
||||||
/* ============================== END OF FILE ============================= */
|
/* ============================== END OF FILE ============================= */
|
||||||
/* ======================================================================== */
|
/* ======================================================================== */
|
||||||
|
|
||||||
|
|
||||||
|
@ -39,8 +39,7 @@
|
|||||||
#include "nld_signal.h"
|
#include "nld_signal.h"
|
||||||
|
|
||||||
#define TTL_74175(_name) \
|
#define TTL_74175(_name) \
|
||||||
NET_REGISTER_DEV(74175, _name) \
|
NET_REGISTER_DEV(74175, _name)
|
||||||
|
|
||||||
#define TTL_74175_DIP(_name) \
|
#define TTL_74175_DIP(_name) \
|
||||||
NET_REGISTER_DEV(74175_dip, _name)
|
NET_REGISTER_DEV(74175_dip, _name)
|
||||||
|
|
||||||
|
@ -27,8 +27,7 @@
|
|||||||
#include "../nl_base.h"
|
#include "../nl_base.h"
|
||||||
|
|
||||||
#define TTL_82S16(_name) \
|
#define TTL_82S16(_name) \
|
||||||
NET_REGISTER_DEV(82S16, _name) \
|
NET_REGISTER_DEV(82S16, _name)
|
||||||
|
|
||||||
#define TTL_82S16_DIP(_name) \
|
#define TTL_82S16_DIP(_name) \
|
||||||
NET_REGISTER_DEV(82S16_dip, _name)
|
NET_REGISTER_DEV(82S16_dip, _name)
|
||||||
|
|
||||||
|
@ -40,8 +40,7 @@
|
|||||||
#include "nld_signal.h"
|
#include "nld_signal.h"
|
||||||
|
|
||||||
#define TTL_9312(_name) \
|
#define TTL_9312(_name) \
|
||||||
NET_REGISTER_DEV(9312, _name) \
|
NET_REGISTER_DEV(9312, _name)
|
||||||
|
|
||||||
//#if (USE_TRUTHTABLE)
|
//#if (USE_TRUTHTABLE)
|
||||||
#include "nld_truthtable.h"
|
#include "nld_truthtable.h"
|
||||||
NETLIB_TRUTHTABLE(9312, 12, 2, 0);
|
NETLIB_TRUTHTABLE(9312, 12, 2, 0);
|
||||||
|
@ -53,7 +53,6 @@ NETLIB_RESET(nicDelay)
|
|||||||
|
|
||||||
NETLIB_UPDATE_PARAM(nicDelay)
|
NETLIB_UPDATE_PARAM(nicDelay)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
NETLIB_UPDATE(nicDelay)
|
NETLIB_UPDATE(nicDelay)
|
||||||
|
@ -124,8 +124,7 @@ public:
|
|||||||
NET_C(_name.15, _name ## _C2.1) \
|
NET_C(_name.15, _name ## _C2.1) \
|
||||||
NET_C(_name.14, _name ## _C2.2) }\
|
NET_C(_name.14, _name ## _C2.2) }\
|
||||||
NET_C(_name.14, _name ## _R2.2) \
|
NET_C(_name.14, _name ## _R2.2) \
|
||||||
NET_C(VCC, _name ## _R2.1) \
|
NET_C(VCC, _name ## _R2.1)
|
||||||
|
|
||||||
#define CHIP_SERIES_RC(_name, _pdesc) \
|
#define CHIP_SERIES_RC(_name, _pdesc) \
|
||||||
RES(_name ## _R, (_pdesc)->r) \
|
RES(_name ## _R, (_pdesc)->r) \
|
||||||
CAP(_name ## _C, (_pdesc)->c) \
|
CAP(_name ## _C, (_pdesc)->c) \
|
||||||
@ -166,7 +165,6 @@ inline int CAPACITOR_tc(const double c, const double r)
|
|||||||
#define CHIP_CAPACITOR(_name, _pdesc) \
|
#define CHIP_CAPACITOR(_name, _pdesc) \
|
||||||
NETDEV_DELAY(_name) \
|
NETDEV_DELAY(_name) \
|
||||||
NETDEV_PARAMI(_name, L_TO_H, CAPACITOR_tc((_pdesc)->c, (_pdesc)->r)) \
|
NETDEV_PARAMI(_name, L_TO_H, CAPACITOR_tc((_pdesc)->c, (_pdesc)->r)) \
|
||||||
NETDEV_PARAMI(_name, H_TO_HL, CAPACITOR_tc((_pdesc)->c, (_pdesc)->r)) \
|
NETDEV_PARAMI(_name, H_TO_HL, CAPACITOR_tc((_pdesc)->c, (_pdesc)->r))
|
||||||
|
|
||||||
|
|
||||||
#endif /* NL_DICE_COMPAT_H_ */
|
#endif /* NL_DICE_COMPAT_H_ */
|
||||||
|
@ -122,7 +122,6 @@ void es1373_device::device_timer(emu_timer &timer, device_timer_id tid, int para
|
|||||||
//-------------------------------------------------
|
//-------------------------------------------------
|
||||||
void es1373_device::sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples)
|
void es1373_device::sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples)
|
||||||
{
|
{
|
||||||
|
|
||||||
if (m_dac1.enable) {
|
if (m_dac1.enable) {
|
||||||
logerror("%s: sound_stream_update DAC1 not implemented yet\n", tag());
|
logerror("%s: sound_stream_update DAC1 not implemented yet\n", tag());
|
||||||
}
|
}
|
||||||
|
@ -344,5 +344,3 @@ WRITE16_MEMBER(l7a1045_sound_device::sound_status_w)
|
|||||||
m_key |= 1 << m_audiochannel;
|
m_key |= 1 << m_audiochannel;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1227,4 +1227,3 @@ WRITE8_MEMBER(cirrus_gd5428_device::mem_w)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -96,4 +96,3 @@ protected:
|
|||||||
// device type definition
|
// device type definition
|
||||||
extern const device_type CIRRUS_GD5428;
|
extern const device_type CIRRUS_GD5428;
|
||||||
extern const device_type CIRRUS_GD5430;
|
extern const device_type CIRRUS_GD5430;
|
||||||
|
|
||||||
|
@ -5547,5 +5547,3 @@ READ16_MEMBER(mach8_device::mach8_config2_r)
|
|||||||
{
|
{
|
||||||
return 0x0002;
|
return 0x0002;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -15448,22 +15448,3 @@ GAME( 200?, sc5_z057 ,0, bfm_sc5, bfm_sc5, bfm_sc5_state, sc5, ROT0, "
|
|||||||
GAME( 200?, sc5_z058 ,0, bfm_sc5, bfm_sc5, bfm_sc5_state, sc5, ROT0, "BFM","Wok 'n' Roll (Scorpion 5)", GAME_IS_SKELETON_MECHANICAL )
|
GAME( 200?, sc5_z058 ,0, bfm_sc5, bfm_sc5, bfm_sc5_state, sc5, ROT0, "BFM","Wok 'n' Roll (Scorpion 5)", GAME_IS_SKELETON_MECHANICAL )
|
||||||
GAME( 200?, sc5_z059 ,0, bfm_sc5, bfm_sc5, bfm_sc5_state, sc5, ROT0, "BFM","Aladdin (Scorpion 5)", GAME_IS_SKELETON_MECHANICAL )
|
GAME( 200?, sc5_z059 ,0, bfm_sc5, bfm_sc5, bfm_sc5_state, sc5, ROT0, "BFM","Aladdin (Scorpion 5)", GAME_IS_SKELETON_MECHANICAL )
|
||||||
GAME( 200?, sc5_z060 ,0, bfm_sc5, bfm_sc5, bfm_sc5_state, sc5, ROT0, "BFM","Hard Dk (Scorpion 5)", GAME_IS_SKELETON_MECHANICAL )
|
GAME( 200?, sc5_z060 ,0, bfm_sc5, bfm_sc5, bfm_sc5_state, sc5, ROT0, "BFM","Hard Dk (Scorpion 5)", GAME_IS_SKELETON_MECHANICAL )
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -2017,4 +2017,3 @@ GAME( 1992, sexappl, 0, findout, sexappl, driver_device, 0, ROT0
|
|||||||
|
|
||||||
GAME( 1992, geimulti, 0, geimulti, geimulti, gei_state, geimulti, ROT0, "Grayhound Electronics", "GEI Multi Game", GAME_IMPERFECT_GRAPHICS | GAME_IMPERFECT_SOUND )
|
GAME( 1992, geimulti, 0, geimulti, geimulti, gei_state, geimulti, ROT0, "Grayhound Electronics", "GEI Multi Game", GAME_IMPERFECT_GRAPHICS | GAME_IMPERFECT_SOUND )
|
||||||
GAME( 1992, sprtauth, 0, sprtauth, sprtauth, gei_state, geimulti, ROT0, "Classic Games", "Sports Authority", GAME_IMPERFECT_GRAPHICS | GAME_IMPERFECT_SOUND )
|
GAME( 1992, sprtauth, 0, sprtauth, sprtauth, gei_state, geimulti, ROT0, "Classic Games", "Sports Authority", GAME_IMPERFECT_GRAPHICS | GAME_IMPERFECT_SOUND )
|
||||||
|
|
||||||
|
@ -332,4 +332,3 @@ ROM_END
|
|||||||
|
|
||||||
GAME( 1992, hexion, 0, hexion, hexion, driver_device, 0, ROT0, "Konami", "Hexion (Japan ver JAB)", 0 )
|
GAME( 1992, hexion, 0, hexion, hexion, driver_device, 0, ROT0, "Konami", "Hexion (Japan ver JAB)", 0 )
|
||||||
GAME( 1992, hexionb,hexion, hexionb,hexion, driver_device, 0, ROT0, "bootleg (Impeuropex Corp.)", "Hexion (Asia ver AAA, bootleg)", 0 ) // we're missing an original Asia AAA
|
GAME( 1992, hexionb,hexion, hexionb,hexion, driver_device, 0, ROT0, "bootleg (Impeuropex Corp.)", "Hexion (Asia ver AAA, bootleg)", 0 ) // we're missing an original Asia AAA
|
||||||
|
|
||||||
|
@ -280,8 +280,7 @@ MACHINE_CONFIG_END
|
|||||||
ROM_SYSTEM_BIOS( 1, "bios1", "BOOT VER 2.00" ) \
|
ROM_SYSTEM_BIOS( 1, "bios1", "BOOT VER 2.00" ) \
|
||||||
ROM_LOAD16_WORD_SWAP_BIOS( 1, "epr-24328.ic50", 0x000000, 0x200000, CRC(25f2ef00) SHA1(e58dec9f171e52b3ded213b3fcd9a0de8a438076) ) \
|
ROM_LOAD16_WORD_SWAP_BIOS( 1, "epr-24328.ic50", 0x000000, 0x200000, CRC(25f2ef00) SHA1(e58dec9f171e52b3ded213b3fcd9a0de8a438076) ) \
|
||||||
ROM_SYSTEM_BIOS( 2, "bios2", "BOOT VER 2.01" ) \
|
ROM_SYSTEM_BIOS( 2, "bios2", "BOOT VER 2.01" ) \
|
||||||
ROM_LOAD16_WORD_SWAP_BIOS( 2, "epr-24328a.ic50", 0x000000, 0x200000, CRC(03ec3805) SHA1(a8fbaea826ca257be0b2b86952f247254929e046) ) \
|
ROM_LOAD16_WORD_SWAP_BIOS( 2, "epr-24328a.ic50", 0x000000, 0x200000, CRC(03ec3805) SHA1(a8fbaea826ca257be0b2b86952f247254929e046) )
|
||||||
|
|
||||||
// Network/Media Board firmware VER 1.19(VxWorks), 1st half contain original 1.10 version
|
// Network/Media Board firmware VER 1.19(VxWorks), 1st half contain original 1.10 version
|
||||||
#define SEGASP_NETFIRM \
|
#define SEGASP_NETFIRM \
|
||||||
ROM_REGION( 0x200000, "netcpu", 0) \
|
ROM_REGION( 0x200000, "netcpu", 0) \
|
||||||
|
@ -24,4 +24,3 @@ public:
|
|||||||
|
|
||||||
protected:
|
protected:
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -155,7 +155,6 @@ READ32_MEMBER( iteagle_fpga_device::fpga_r )
|
|||||||
|
|
||||||
WRITE32_MEMBER( iteagle_fpga_device::fpga_w )
|
WRITE32_MEMBER( iteagle_fpga_device::fpga_w )
|
||||||
{
|
{
|
||||||
|
|
||||||
COMBINE_DATA(&m_fpga_regs[offset]);
|
COMBINE_DATA(&m_fpga_regs[offset]);
|
||||||
switch (offset) {
|
switch (offset) {
|
||||||
case 0x04/4:
|
case 0x04/4:
|
||||||
|
@ -81,4 +81,3 @@ struct _IO_FILE {}; //_IO_FILE is an opaque type in the emscripten libc which m
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* SDLMAME_UNIX */
|
#endif /* SDLMAME_UNIX */
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#define BARE_BUILD_VERSION "0.160"
|
#define BARE_BUILD_VERSION "0.161"
|
||||||
|
|
||||||
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