mirror of
https://github.com/holub/mame
synced 2025-06-10 14:52:42 +03:00
Cleanups and version bump
This commit is contained in:
parent
d3f32a1ba7
commit
14629cbcb4
@ -598,7 +598,6 @@ static int recurse_dir(astring &srcdir)
|
||||
{
|
||||
for (list_entry *src = lib->sourcefiles; src != NULL; src = src->next)
|
||||
{
|
||||
|
||||
astring srcfile;
|
||||
|
||||
// build the source filename
|
||||
|
@ -645,4 +645,3 @@ offs_t alpha8201_cpu_device::disasm_disassemble(char *buffer, offs_t pc, const U
|
||||
extern CPU_DISASSEMBLE( alpha8201 );
|
||||
return CPU_DISASSEMBLE_NAME(alpha8201)(this, buffer, pc, oprom, opram, options);
|
||||
}
|
||||
|
||||
|
@ -675,4 +675,3 @@ offs_t am29000_cpu_device::disasm_disassemble(char *buffer, offs_t pc, const UIN
|
||||
extern CPU_DISASSEMBLE( am29000 );
|
||||
return CPU_DISASSEMBLE_NAME(am29000)(this, buffer, pc, oprom, opram, options);
|
||||
}
|
||||
|
||||
|
@ -854,4 +854,3 @@ offs_t apexc_cpu_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8
|
||||
extern CPU_DISASSEMBLE( apexc );
|
||||
return CPU_DISASSEMBLE_NAME(apexc)(this, buffer, pc, oprom, opram, options);
|
||||
}
|
||||
|
||||
|
@ -1470,4 +1470,3 @@ offs_t arm_be_cpu_device::disasm_disassemble(char *buffer, offs_t pc, const UINT
|
||||
extern CPU_DISASSEMBLE( arm_be );
|
||||
return CPU_DISASSEMBLE_NAME(arm_be)(this, buffer, pc, oprom, opram, options);
|
||||
}
|
||||
|
||||
|
@ -1219,4 +1219,3 @@ UINT8 arm7_cpu_device::arm7_cpu_read8(UINT32 addr)
|
||||
}
|
||||
|
||||
#include "arm7drc.c"
|
||||
|
||||
|
@ -228,4 +228,3 @@ void arm7_cpu_device::arm7_check_irq_state()
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1589,4 +1589,3 @@ void arm7_cpu_device::drctg0f_1(drcuml_block *block, compiler_state *compiler, c
|
||||
UML_OR(block, DRC_REG(14), DRC_REG(14), 1);
|
||||
UML_MOV(block, DRC_PC, uml::I0);
|
||||
}
|
||||
|
||||
|
@ -685,5 +685,3 @@ offs_t ccpu_cpu_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8
|
||||
extern CPU_DISASSEMBLE( ccpu );
|
||||
return CPU_DISASSEMBLE_NAME(ccpu)(this, buffer, pc, oprom, opram, options);
|
||||
}
|
||||
|
||||
|
||||
|
@ -1270,4 +1270,3 @@ offs_t cop400_cpu_device::disasm_disassemble(char *buffer, offs_t pc, const UINT
|
||||
|
||||
return CPU_DISASSEMBLE_NAME(cop410)(this, buffer, pc, oprom, opram, options);
|
||||
}
|
||||
|
||||
|
@ -3442,5 +3442,3 @@ offs_t cp1610_cpu_device::disasm_disassemble(char *buffer, offs_t pc, const UINT
|
||||
extern CPU_DISASSEMBLE( cp1610 );
|
||||
return CPU_DISASSEMBLE_NAME(cp1610)(this, buffer, pc, oprom, opram, options);
|
||||
}
|
||||
|
||||
|
||||
|
@ -519,4 +519,3 @@ offs_t hcd62121_cpu_device::disasm_disassemble(char *buffer, offs_t pc, const UI
|
||||
extern CPU_DISASSEMBLE( hcd62121 );
|
||||
return CPU_DISASSEMBLE_NAME(hcd62121)(this, buffer, pc, oprom, opram, options);
|
||||
}
|
||||
|
||||
|
@ -1725,7 +1725,6 @@ void m68000_base_device::init_cpu_m68000(void)
|
||||
|
||||
void m68000_base_device::init_cpu_m68008(void)
|
||||
{
|
||||
|
||||
init_cpu_common();
|
||||
|
||||
cpu_type = CPU_TYPE_008;
|
||||
@ -1755,7 +1754,6 @@ void m68000_base_device::init_cpu_m68008(void)
|
||||
|
||||
void m68000_base_device::init_cpu_m68010(void)
|
||||
{
|
||||
|
||||
init_cpu_common();
|
||||
cpu_type = CPU_TYPE_010;
|
||||
// dasm_type = M68K_CPU_TYPE_68010;
|
||||
@ -2415,7 +2413,6 @@ void m68000_base_device::execute_run()
|
||||
|
||||
void m68000_base_device::device_start()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void m68000_base_device::device_reset()
|
||||
@ -2425,7 +2422,6 @@ void m68000_base_device::device_reset()
|
||||
|
||||
void m68000_base_device::device_stop()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -2491,7 +2487,6 @@ const device_type MCF5206E = &device_creator<mcf5206e_device>;
|
||||
m68000_device::m68000_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: m68000_base_device(mconfig, "M68000", tag, owner, clock, M68000, 16,24, "m68000", __FILE__)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void m68000_device::device_start()
|
||||
@ -2503,7 +2498,6 @@ m68000_device::m68000_device(const machine_config &mconfig, const char *name, co
|
||||
const device_type type, UINT32 prg_data_width, UINT32 prg_address_bits, address_map_constructor internal_map, const char *shortname, const char *source)
|
||||
: m68000_base_device(mconfig, name, tag, owner, clock, type, prg_data_width, prg_address_bits, internal_map, shortname, source)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -2513,7 +2507,6 @@ m68000_device::m68000_device(const machine_config &mconfig, const char *name, co
|
||||
m68301_device::m68301_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: m68000_base_device(mconfig, "M68301", tag, owner, clock, M68301, 16,24, "m68301", __FILE__)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -2532,7 +2525,6 @@ void m68301_device::device_start()
|
||||
m68008_device::m68008_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: m68000_base_device(mconfig, "M68008", tag, owner, clock, M68008, 8,20, "m68008", __FILE__)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void m68008_device::device_start()
|
||||
@ -2544,7 +2536,6 @@ void m68008_device::device_start()
|
||||
m68008plcc_device::m68008plcc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: m68000_base_device(mconfig, "M68008PLCC", tag, owner, clock, M68008, 8,22, "m68008plcc", __FILE__)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void m68008plcc_device::device_start()
|
||||
@ -2557,7 +2548,6 @@ void m68008plcc_device::device_start()
|
||||
m68010_device::m68010_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: m68000_base_device(mconfig, "M68010", tag, owner, clock, M68010, 16,24, "m68010", __FILE__)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void m68010_device::device_start()
|
||||
@ -2570,7 +2560,6 @@ void m68010_device::device_start()
|
||||
m68020_device::m68020_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: m68000_base_device(mconfig, "M68020", tag, owner, clock, M68020, 32,32, "m68020", __FILE__)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void m68020_device::device_start()
|
||||
@ -2582,7 +2571,6 @@ void m68020_device::device_start()
|
||||
m68020pmmu_device::m68020pmmu_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: m68000_base_device(mconfig, "M68020PMMU", tag, owner, clock, M68020PMMU, 32,32, "m68020pmmu", __FILE__)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void m68020pmmu_device::device_start()
|
||||
@ -2609,7 +2597,6 @@ bool m68020hmmu_device::memory_translate(address_spacenum space, int intention,
|
||||
m68020hmmu_device::m68020hmmu_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: m68000_base_device(mconfig, "M68020HMMU", tag, owner, clock, M68020HMMU, 32,32, "m68020hmmu", __FILE__)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void m68020hmmu_device::device_start()
|
||||
@ -2621,7 +2608,6 @@ void m68020hmmu_device::device_start()
|
||||
m68ec020_device::m68ec020_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: m68000_base_device(mconfig, "M68EC020", tag, owner, clock, M68EC020, 32,24, "m68ec020", __FILE__)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void m68ec020_device::device_start()
|
||||
@ -2632,7 +2618,6 @@ void m68ec020_device::device_start()
|
||||
m68030_device::m68030_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: m68000_base_device(mconfig, "M68030", tag, owner, clock, M68030, 32,32, "m68030", __FILE__)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void m68030_device::device_start()
|
||||
@ -2643,7 +2628,6 @@ void m68030_device::device_start()
|
||||
m68ec030_device::m68ec030_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: m68000_base_device(mconfig, "M68EC030", tag, owner, clock, M68EC030, 32,32, "m68ec030", __FILE__)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void m68ec030_device::device_start()
|
||||
@ -2654,7 +2638,6 @@ void m68ec030_device::device_start()
|
||||
m68040_device::m68040_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: m68000_base_device(mconfig, "M68040", tag, owner, clock, M68040, 32,32, "m68040", __FILE__)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -2668,7 +2651,6 @@ void m68040_device::device_start()
|
||||
m68ec040_device::m68ec040_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: m68000_base_device(mconfig, "M68EC040", tag, owner, clock, M68EC040, 32,32, "m68ec040", __FILE__)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void m68ec040_device::device_start()
|
||||
@ -2681,7 +2663,6 @@ void m68ec040_device::device_start()
|
||||
m68lc040_device::m68lc040_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: m68000_base_device(mconfig, "M68LC040", tag, owner, clock, M68LC040, 32,32, "m68lc040", __FILE__)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void m68lc040_device::device_start()
|
||||
@ -2693,7 +2674,6 @@ void m68lc040_device::device_start()
|
||||
scc68070_device::scc68070_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: m68000_base_device(mconfig, "SCC68070", tag, owner, clock, SCC68070, 16,32, "scc68070", __FILE__)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void scc68070_device::device_start()
|
||||
@ -2705,14 +2685,12 @@ void scc68070_device::device_start()
|
||||
fscpu32_device::fscpu32_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: m68000_base_device(mconfig, "Freescale CPU32 Core", tag, owner, clock, FSCPU32, 32,32, "fscpu32", __FILE__)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
fscpu32_device::fscpu32_device(const machine_config &mconfig, const char *name, const char *tag, device_t *owner, UINT32 clock,
|
||||
const device_type type, UINT32 prg_data_width, UINT32 prg_address_bits, address_map_constructor internal_map, const char *shortname, const char *source)
|
||||
: m68000_base_device(mconfig, name, tag, owner, clock, type, prg_data_width, prg_address_bits, internal_map, shortname, source)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -2726,7 +2704,6 @@ void fscpu32_device::device_start()
|
||||
mcf5206e_device::mcf5206e_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: m68000_base_device(mconfig, "MCF5206E", tag, owner, clock, MCF5206E, 32,32, "mcf5206e", __FILE__)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void mcf5206e_device::device_start()
|
||||
|
@ -1118,4 +1118,3 @@ tms1300_cpu_device::tms1300_cpu_device(const machine_config &mconfig, const char
|
||||
: tms1100_cpu_device( mconfig, TMS1300, "TMS1300", tag, owner, clock, 0x00ff, 0xffff, "tms1300", __FILE__ )
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -146,5 +146,3 @@ void m68340cpu_device::device_start()
|
||||
|
||||
internal = &this->space(AS_PROGRAM);
|
||||
}
|
||||
|
||||
|
||||
|
@ -149,7 +149,6 @@ k007232_device::k007232_device(const machine_config &mconfig, const char *tag, d
|
||||
: device_t(mconfig, K007232, "K007232", tag, owner, clock, "k007232", __FILE__),
|
||||
device_sound_interface(mconfig, *this)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
//-------------------------------------------------
|
||||
|
@ -411,31 +411,27 @@ enum tilemap_standard_mapper
|
||||
MCFG_TILEMAP_BYTES_PER_ENTRY(_bytes_per_entry) \
|
||||
MCFG_TILEMAP_INFO_CB_DRIVER(_class, _method) \
|
||||
MCFG_TILEMAP_LAYOUT_STANDARD(_mapper, _columns, _rows) \
|
||||
MCFG_TILEMAP_TILE_SIZE(_tilewidth, _tileheight) \
|
||||
|
||||
MCFG_TILEMAP_TILE_SIZE(_tilewidth, _tileheight)
|
||||
#define MCFG_TILEMAP_ADD_CUSTOM(_tag, _bytes_per_entry, _class, _method, _tilewidth, _tileheight, _mapper, _columns, _rows) \
|
||||
MCFG_TILEMAP_ADD(_tag) \
|
||||
MCFG_TILEMAP_BYTES_PER_ENTRY(_bytes_per_entry) \
|
||||
MCFG_TILEMAP_INFO_CB_DRIVER(_class, _method) \
|
||||
MCFG_TILEMAP_LAYOUT_CB_DRIVER(_class, _mapper, _columns, _rows) \
|
||||
MCFG_TILEMAP_TILE_SIZE(_tilewidth, _tileheight) \
|
||||
|
||||
MCFG_TILEMAP_TILE_SIZE(_tilewidth, _tileheight)
|
||||
#define MCFG_TILEMAP_ADD_STANDARD_TRANSPEN(_tag, _bytes_per_entry, _class, _method, _tilewidth, _tileheight, _mapper, _columns, _rows, _transpen) \
|
||||
MCFG_TILEMAP_ADD(_tag) \
|
||||
MCFG_TILEMAP_BYTES_PER_ENTRY(_bytes_per_entry) \
|
||||
MCFG_TILEMAP_INFO_CB_DRIVER(_class, _method) \
|
||||
MCFG_TILEMAP_LAYOUT_STANDARD(_mapper, _columns, _rows) \
|
||||
MCFG_TILEMAP_TILE_SIZE(_tilewidth, _tileheight) \
|
||||
MCFG_TILEMAP_TRANSPARENT_PEN(_transpen) \
|
||||
|
||||
MCFG_TILEMAP_TRANSPARENT_PEN(_transpen)
|
||||
#define MCFG_TILEMAP_ADD_CUSTOM_TRANSPEN(_tag, _bytes_per_entry, _class, _method, _tilewidth, _tileheight, _mapper, _columns, _rows, _transpen) \
|
||||
MCFG_TILEMAP_ADD(_tag) \
|
||||
MCFG_TILEMAP_BYTES_PER_ENTRY(_bytes_per_entry) \
|
||||
MCFG_TILEMAP_INFO_CB_DRIVER(_class, _method) \
|
||||
MCFG_TILEMAP_LAYOUT_CB_DRIVER(_columns, _mapper, _rows, _class) \
|
||||
MCFG_TILEMAP_TILE_SIZE(_tilewidth, _tileheight) \
|
||||
MCFG_TILEMAP_TRANSPARENT_PEN(_transpen) \
|
||||
|
||||
MCFG_TILEMAP_TRANSPARENT_PEN(_transpen)
|
||||
|
||||
|
||||
//**************************************************************************
|
||||
|
@ -83,8 +83,7 @@ extern const device_type ATARI_JSA_IIIS;
|
||||
|
||||
#define MCFG_ATARI_JSA_TEST_PORT(_port, _bitnum) \
|
||||
devcb = &atari_jsa_base_device::static_set_test_read_cb(*device, DEVCB2_IOPORT(_port)); \
|
||||
MCFG_DEVCB_RSHIFT(_bitnum); \
|
||||
|
||||
MCFG_DEVCB_RSHIFT(_bitnum);
|
||||
|
||||
|
||||
//**************************************************************************
|
||||
|
@ -46,4 +46,3 @@
|
||||
http://forum.arcadeotaku.com/viewtopic.php?f=26&t=14850&start=60
|
||||
|
||||
*/
|
||||
|
||||
|
@ -358,13 +358,11 @@ static const deco16ic_interface dblewing_deco16ic_tilegen1_intf =
|
||||
|
||||
void dblewing_state::machine_start()
|
||||
{
|
||||
|
||||
save_item(NAME(m_sound_irq));
|
||||
}
|
||||
|
||||
void dblewing_state::machine_reset()
|
||||
{
|
||||
|
||||
m_sound_irq = 0;
|
||||
}
|
||||
|
||||
|
@ -1625,4 +1625,3 @@ GAME( 2000, stealsee, 0, eolith45, stealsee, eolith_state, eolith, RO
|
||||
GAME( 2000, hidctch3, 0, eolith50, hidctch3, eolith_state, hidctch3, ROT0, "Eolith", "Hidden Catch 3 (ver 1.00 / pcb ver 3.05)", GAME_IMPERFECT_SOUND )
|
||||
GAME( 2001, fort2b, 0, eolith50, common, eolith_state, eolith, ROT0, "Eolith", "Fortress 2 Blue Arcade (ver 1.01 / pcb ver 3.05)", GAME_IMPERFECT_SOUND )
|
||||
GAME( 2001, fort2ba, fort2b, eolith50, common, eolith_state, eolith, ROT0, "Eolith", "Fortress 2 Blue Arcade (ver 1.00 / pcb ver 3.05)", GAME_IMPERFECT_SOUND )
|
||||
|
||||
|
@ -314,7 +314,6 @@ static const deco16ic_interface funkyjet_deco16ic_tilegen1_intf =
|
||||
|
||||
void funkyjet_state::machine_start()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
static MACHINE_CONFIG_START( funkyjet, funkyjet_state )
|
||||
|
@ -591,4 +591,3 @@ ROM_END
|
||||
GAME( 1983, miniboy7, 0, miniboy7, miniboy7, driver_device, 0, ROT0, "Bonanza Enterprises, Ltd", "Mini Boy 7 (set 1)", GAME_NO_SOUND | GAME_WRONG_COLORS | GAME_NOT_WORKING )
|
||||
GAME( 1983, miniboy7a, miniboy7, miniboy7, miniboy7, driver_device, 0, ROT0, "Bonanza Enterprises, Ltd", "Mini Boy 7 (set 2)", GAME_NO_SOUND | GAME_WRONG_COLORS | GAME_NOT_WORKING )
|
||||
GAME( 1983, miniboy7b, miniboy7, miniboy7, miniboy7, driver_device, 0, ROT0, "Bonanza Enterprises, Ltd", "Mini Boy 7 (set 3)", GAME_NO_SOUND | GAME_WRONG_COLORS | GAME_NOT_WORKING )
|
||||
|
||||
|
@ -311,7 +311,6 @@ static const deco16ic_interface pktgaldx_deco16ic_tilegen1_intf =
|
||||
|
||||
void pktgaldx_state::machine_start()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
static MACHINE_CONFIG_START( pktgaldx, pktgaldx_state )
|
||||
|
@ -841,7 +841,7 @@ ROM_START( gogold )
|
||||
ROM_LOAD( "b56-18.bin", 0x00000, 0x02000, CRC(c88f0bbe) SHA1(18c87c744fbeca35d13033e50f62e5383eb4ec2c) )
|
||||
ROM_END
|
||||
|
||||
// Sega Tetris on a Taito H-System board, with some roms from ‘Go For The Gold’ still on the board.
|
||||
// Sega Tetris on a Taito H-System board, with some roms from ?Go For The Gold? still on the board.
|
||||
ROM_START( tetristh )
|
||||
ROM_REGION( 0x40000, "maincpu", 0 ) /* main cpu */
|
||||
ROM_LOAD16_BYTE( "c26-12-1.ic36", 0x00000, 0x20000, CRC(77e80c82) SHA1(840dc5a54a865b8cd2e0d03001a493987d66c23b) )
|
||||
|
@ -119,4 +119,3 @@ extern const device_type BEEZER;
|
||||
|
||||
extern const via6522_interface b_via_0_interface;
|
||||
extern const via6522_interface b_via_1_interface;
|
||||
|
||||
|
@ -93,4 +93,3 @@ MACHINE_CONFIG_EXTERN( wotw_sound );
|
||||
MACHINE_CONFIG_EXTERN( wotwc_sound );
|
||||
MACHINE_CONFIG_EXTERN( demon_sound );
|
||||
MACHINE_CONFIG_EXTERN( qb3_sound );
|
||||
|
||||
|
@ -69,5 +69,3 @@ public:
|
||||
DECLARE_READ16_MEMBER( sh96_protection_region_0_146_r );
|
||||
DECLARE_WRITE16_MEMBER( sh96_protection_region_0_146_w );
|
||||
};
|
||||
|
||||
|
||||
|
@ -64,14 +64,12 @@
|
||||
#define MCFG_ATARI_SOUND_COMM_ADD(_tag, _soundcpu, _intcb) \
|
||||
MCFG_DEVICE_ADD(_tag, ATARI_SOUND_COMM, 0) \
|
||||
atari_sound_comm_device::static_set_sound_cpu(*device, _soundcpu); \
|
||||
devcb = &atari_sound_comm_device::static_set_main_int_cb(*device, DEVCB2_##_intcb); \
|
||||
|
||||
devcb = &atari_sound_comm_device::static_set_main_int_cb(*device, DEVCB2_##_intcb);
|
||||
|
||||
#define MCFG_ATARI_VAD_ADD(_tag, _screen, _intcb) \
|
||||
MCFG_DEVICE_ADD(_tag, ATARI_VAD, 0) \
|
||||
atari_vad_device::static_set_screen(*device, _screen); \
|
||||
devcb = &atari_vad_device::static_set_scanline_int_cb(*device, DEVCB2_##_intcb); \
|
||||
|
||||
devcb = &atari_vad_device::static_set_scanline_int_cb(*device, DEVCB2_##_intcb);
|
||||
#define MCFG_ATARI_VAD_PLAYFIELD(_class, _getinfo) \
|
||||
{ astring fulltag(device->tag(), ":playfield"); device_t *device; \
|
||||
MCFG_TILEMAP_ADD(fulltag) \
|
||||
|
@ -489,7 +489,6 @@ static UINT16 deco16_prot_ram[0x800];
|
||||
|
||||
READ16_HANDLER( deco16_104_pktgaldx_prot_r )
|
||||
{
|
||||
|
||||
const UINT16* prot_ram=deco16_prot_ram;
|
||||
switch (offset * 2)
|
||||
{
|
||||
@ -508,7 +507,6 @@ READ16_HANDLER( deco16_104_pktgaldx_prot_r )
|
||||
|
||||
WRITE16_HANDLER( deco16_104_pktgaldx_prot_w )
|
||||
{
|
||||
|
||||
COMBINE_DATA(&deco16_prot_ram[offset]);
|
||||
// logerror("Protection PC %06x: warning - write unmapped memory address %04x %04x\n",space.device().safe_pc(),offset<<1,data);
|
||||
|
||||
@ -643,7 +641,3 @@ void deco104_device::write_protport(address_space &space, UINT16 address, UINT16
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -109,7 +109,6 @@ struct deco146port_xx
|
||||
int use_xor;
|
||||
int use_nand;
|
||||
} port_table[] = {
|
||||
|
||||
#define NIB3__ 0xc, 0xd, 0xe, 0xf
|
||||
#define NIB3R1 0xd, 0xe, 0xf, 0xc
|
||||
#define NIB3R2 0xe, 0xf, 0xc, 0xd
|
||||
@ -1238,7 +1237,6 @@ void deco_146_base_device::write_data(address_space &space, UINT16 address, UINT
|
||||
|
||||
UINT16 deco_146_base_device::read_protport(UINT16 address, UINT16 mem_mask)
|
||||
{
|
||||
|
||||
// if we read the last written address immediately after then ignore all other logic and just return what was written unmodified
|
||||
if ((address==m_latchaddr) && (m_latchflag==1))
|
||||
{
|
||||
@ -1443,7 +1441,6 @@ void deco_146_base_device::set_use_magic_read_address_xor(device_t &device, int
|
||||
|
||||
void deco_146_base_device::device_start()
|
||||
{
|
||||
|
||||
for (int i=0;i<0x80;i++)
|
||||
{
|
||||
// the mutant fighter old sim assumes 0x0000
|
||||
@ -1558,4 +1555,3 @@ deco146_device::deco146_device(const machine_config &mconfig, const char *tag, d
|
||||
m_mask_port = 0x36;
|
||||
m_soundlatch_port = 0x64;
|
||||
}
|
||||
|
||||
|
@ -427,4 +427,3 @@ void decocpu_type3_device::device_start()
|
||||
{
|
||||
decocpu_type1_device::device_start();
|
||||
}
|
||||
|
||||
|
@ -182,7 +182,6 @@ deco16ic_device::deco16ic_device(const machine_config &mconfig, const char *tag,
|
||||
m_pf12_last_big(0),
|
||||
m_pf1_8bpp_mode(0)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
//-------------------------------------------------
|
||||
|
@ -974,5 +974,3 @@ void k001005_device::device_stop()
|
||||
{
|
||||
DEVICE_STOP_NAME( k001005 )(this);
|
||||
}
|
||||
|
||||
|
||||
|
@ -163,4 +163,3 @@ UINT32 k001006_device::get_palette( int index )
|
||||
{
|
||||
return m_palette[index];
|
||||
}
|
||||
|
||||
|
@ -303,5 +303,3 @@ TILE_GET_INFO_MEMBER(k007342_device::get_tile_info1)
|
||||
{
|
||||
get_tile_info(tileinfo, tile_index, 1, m_colorram_1, m_videoram_1);
|
||||
}
|
||||
|
||||
|
||||
|
@ -197,7 +197,6 @@ void k051960_device::device_start()
|
||||
|
||||
void k051960_device::device_reset()
|
||||
{
|
||||
|
||||
m_dx = m_dy = 0;
|
||||
m_k051937_counter = 0;
|
||||
|
||||
|
@ -809,5 +809,3 @@ READ16_MEMBER( k05324x_device::k053244_reg_word_r )
|
||||
{
|
||||
return(m_regs[offset * 2] << 8 | m_regs[offset * 2 + 1]);
|
||||
}
|
||||
|
||||
|
||||
|
@ -974,7 +974,6 @@ const device_type K055673 = &device_creator<k055673_device>;
|
||||
k055673_device::k055673_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: k053247_device(mconfig, K055673, "Konami 055673", tag, owner, clock, "k055673", __FILE__)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -984,7 +983,6 @@ k055673_device::k055673_device(const machine_config &mconfig, const char *tag, d
|
||||
|
||||
void k055673_device::device_start()
|
||||
{
|
||||
|
||||
/* early out for the non-interface cases for now */
|
||||
if (m_intf_gfx_num == -1)
|
||||
return;
|
||||
@ -1316,7 +1314,3 @@ void k053247_device::alt_k055673_vh_start(running_machine &machine, const char *
|
||||
machine.save().save_item(NAME(m_kx47_regs));
|
||||
machine.save().save_item(NAME(m_objcha_line));
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -245,7 +245,6 @@ public:
|
||||
|
||||
if (gx_objzbuf && gx_shdzbuf) /* GX */
|
||||
{
|
||||
|
||||
k053247_draw_yxloop_gx( bitmap, cliprect,
|
||||
code,
|
||||
color,
|
||||
@ -503,8 +502,7 @@ extern const device_type K055673;
|
||||
MCFG_DEVICE_CONFIG(_interface)
|
||||
|
||||
#define MCFG_K055673_ADD_NOINTF(_tag ) \
|
||||
MCFG_DEVICE_ADD(_tag, K055673, 0) \
|
||||
|
||||
MCFG_DEVICE_ADD(_tag, K055673, 0)
|
||||
|
||||
|
||||
|
||||
|
@ -717,5 +717,3 @@ void K053936GP_0_zoom_draw(running_machine &machine, bitmap_rgb32 &bitmap, const
|
||||
K053936GP_zoom_draw(machine, 0,temp_m_k053936_0_ctrl,temp_m_k053936_0_linectrl,bitmap,cliprect,tmap,tilebpp,blend,alpha, pixeldouble_output);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
@ -208,4 +208,3 @@ WRITE16_MEMBER( k054000_device::lsb_w )
|
||||
if (ACCESSING_BITS_0_7)
|
||||
write(space, offset, data & 0xff);
|
||||
}
|
||||
|
||||
|
@ -215,7 +215,6 @@ k056832_device::k056832_device(const machine_config &mconfig, const char *tag, d
|
||||
m_cur_tile_bank(0),
|
||||
m_k055555(0)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -2611,5 +2610,3 @@ void k056832_device::K056832_set_k055555(k055555_device * mode)
|
||||
{
|
||||
m_k055555 = mode;
|
||||
}
|
||||
|
||||
|
||||
|
@ -521,8 +521,3 @@ READ16_MEMBER( k054338_device::word_r )
|
||||
{
|
||||
return(m_regs[offset]);
|
||||
} // CLTC
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -84,6 +84,3 @@ private:
|
||||
extern const device_type K054338;
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
@ -238,7 +238,6 @@ const device_type K055555 = &device_creator<k055555_device>;
|
||||
k055555_device::k055555_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: device_t(mconfig, K055555, "Konami 055555", tag, owner, clock, "k055555", __FILE__)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
//-------------------------------------------------
|
||||
@ -283,6 +282,3 @@ READ32_MEMBER( k055555_device::k055555_long_r )
|
||||
offset <<= 1;
|
||||
return (k055555_word_r(space, offset + 1, 0xffff) | k055555_word_r(space, offset, 0xffff) << 16);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -121,4 +121,3 @@ extern const device_type K055555;
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -167,4 +167,3 @@ void konami_sortlayers5( int *layer, int *pri )
|
||||
SWAP(3, 4)
|
||||
#undef SWAP
|
||||
}
|
||||
|
||||
|
@ -396,7 +396,6 @@ void konamigx_state::konamigx_mixer(running_machine &machine, bitmap_rgb32 &bitm
|
||||
tilemap_t *sub2, int sub2flags,
|
||||
int mixerflags, bitmap_ind16 *extra_bitmap, int rushingheroes_hack)
|
||||
{
|
||||
|
||||
int objbuf[GX_MAX_OBJECTS];
|
||||
int shadowon[3], shdpri[3], layerid[6], layerpri[6];
|
||||
|
||||
@ -896,10 +895,6 @@ void konamigx_state::konamigx_mixer_draw(running_machine &machine, bitmap_rgb32
|
||||
int nobj
|
||||
)
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
// traverse draw list
|
||||
int disp = m_k055555->K055555_read_register(K55_INPUT_ENABLES);
|
||||
|
||||
@ -951,7 +946,6 @@ void konamigx_state::konamigx_mixer_draw(running_machine &machine, bitmap_rgb32
|
||||
/* the rest are tilemaps of various kinda */
|
||||
else
|
||||
{
|
||||
|
||||
switch (offs)
|
||||
{
|
||||
case -1:
|
||||
|
@ -476,7 +476,6 @@ void pc080sn_device::tilemap_draw_special( bitmap_ind16 &bitmap, const rectangle
|
||||
|
||||
void pc080sn_device::restore_scroll()
|
||||
{
|
||||
|
||||
int flip;
|
||||
|
||||
m_bgscrollx[0] = -m_ctrl[0];
|
||||
|
@ -379,17 +379,14 @@ segaic16_video_device::segaic16_video_device(const machine_config &mconfig, cons
|
||||
|
||||
void segaic16_video_device::device_config_complete()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void segaic16_video_device::device_start()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void segaic16_video_device::device_reset()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -150,7 +150,6 @@ private:
|
||||
extern const device_type SEGAIC16VID;
|
||||
|
||||
#define MCFG_SEGAIC16VID_ADD(_tag) \
|
||||
MCFG_DEVICE_ADD(_tag, SEGAIC16VID, 0) \
|
||||
|
||||
MCFG_DEVICE_ADD(_tag, SEGAIC16VID, 0)
|
||||
|
||||
#endif
|
||||
|
@ -14,17 +14,14 @@ segaic16_road_device::segaic16_road_device(const machine_config &mconfig, const
|
||||
|
||||
void segaic16_road_device::device_config_complete()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void segaic16_road_device::device_start()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void segaic16_road_device::device_reset()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -638,5 +635,3 @@ WRITE16_MEMBER( segaic16_road_device::segaic16_road_control_0_w )
|
||||
info->control = data & ((info->type == SEGAIC16_ROAD_OUTRUN) ? 3 : 7);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
@ -66,7 +66,6 @@ private:
|
||||
extern const device_type SEGAIC16_ROAD;
|
||||
|
||||
#define MCFG_SEGAIC16_ROAD_ADD(_tag) \
|
||||
MCFG_DEVICE_ADD(_tag, SEGAIC16_ROAD, 0) \
|
||||
|
||||
MCFG_DEVICE_ADD(_tag, SEGAIC16_ROAD, 0)
|
||||
|
||||
#endif
|
||||
|
@ -330,4 +330,3 @@ WRITE16_MEMBER( seibu_crtc_device::write_xor )
|
||||
{
|
||||
write_word(offset ^ 0x20,data);
|
||||
}
|
||||
|
||||
|
@ -379,4 +379,3 @@ UINT32 stfight_state::screen_update_cshooter(screen_device &screen, bitmap_ind16
|
||||
m_tx_tilemap->draw(bitmap, cliprect, 0,0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -38,4 +38,3 @@ void taitoic_drawscanline( bitmap_ind16 &bitmap, const rectangle &cliprect, int
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -231,7 +231,6 @@ static void draw_sprites(running_machine &machine,
|
||||
const rectangle &cliprect,
|
||||
int priority_to_draw)
|
||||
{
|
||||
|
||||
thepit_state *state = machine.driver_data<thepit_state>();
|
||||
int offs;
|
||||
|
||||
|
@ -18,12 +18,10 @@ toaplan_scu_device::toaplan_scu_device(const machine_config &mconfig, const char
|
||||
|
||||
void toaplan_scu_device::device_start()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void toaplan_scu_device::device_reset()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void toaplan_scu_device::alloc_sprite_bitmap()
|
||||
@ -107,4 +105,3 @@ void toaplan_scu_device::copy_sprites_from_tempbitmap(bitmap_ind16 &bitmap, cons
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -24,8 +24,4 @@ private:
|
||||
extern const device_type TOAPLAN_SCU;
|
||||
|
||||
#define MCFG_TOAPLAN_SCU_ADD(_tag ) \
|
||||
MCFG_DEVICE_ADD(_tag, TOAPLAN_SCU, 0) \
|
||||
|
||||
|
||||
|
||||
|
||||
MCFG_DEVICE_ADD(_tag, TOAPLAN_SCU, 0)
|
||||
|
@ -149,7 +149,6 @@ void apollo_set_cpu_has_fpu(m68000_base_device *device, int onoff)
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
device->has_fpu = onoff;
|
||||
DLOG1(("apollo_set_cpu_has_fpu: FPU has been %s", onoff ? "enabled" : "disabled"));
|
||||
}
|
||||
|
@ -216,5 +216,3 @@ void device_macpds_card_interface::install_rom(device_t *dev, const char *romreg
|
||||
|
||||
m_macpds->install_bank(addr, addr+romlen-1, 0, 0, bankname, rom);
|
||||
}
|
||||
|
||||
|
||||
|
@ -267,5 +267,3 @@ void sms_light_phaser_device::device_timer(emu_timer &timer, device_timer_id id,
|
||||
assert_always(FALSE, "Unknown id in sms_light_phaser_device::device_timer");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
@ -109,4 +109,3 @@ UINT8 sms_paddle_device::peripheral_r()
|
||||
|
||||
return m_paddle_pins->read();
|
||||
}
|
||||
|
||||
|
@ -140,4 +140,3 @@ machine_config_constructor sms_rapid_fire_device::device_mconfig_additions() con
|
||||
{
|
||||
return MACHINE_CONFIG_NAME( rfire_slot );
|
||||
}
|
||||
|
||||
|
@ -161,4 +161,3 @@ void sms_sports_pad_device::peripheral_w(UINT8 data)
|
||||
{
|
||||
m_sports_out->write(data);
|
||||
}
|
||||
|
||||
|
@ -3111,4 +3111,3 @@ void filter_bml3bas_getinfo(UINT32 state, union filterinfo *info)
|
||||
case FILTINFO_PTR_WRITEFILE: info->write_file = bml3bas_writefile; break;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2871,5 +2871,3 @@ void sgb_lcd_device::sgb_io_write_pal(int offs, UINT8 *data)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -898,5 +898,3 @@
|
||||
/mess/drivers/vta2000
|
||||
/mess/drivers/xor100
|
||||
/mess/drivers/z100
|
||||
|
||||
|
||||
|
@ -38,4 +38,4 @@
|
||||
***************************************************************************/
|
||||
|
||||
extern const char build_version[];
|
||||
const char build_version[] = "0.149 ("__DATE__")";
|
||||
const char build_version[] = "0.149u1 ("__DATE__")";
|
||||
|
Loading…
Reference in New Issue
Block a user