Cleanups and version bump

This commit is contained in:
Miodrag Milanovic 2014-10-15 07:19:47 +00:00
parent a4dd32afb6
commit c93ed344fb
489 changed files with 7476 additions and 7579 deletions

View File

@ -278,4 +278,3 @@ WRITE_LINE_MEMBER(a2bus_corvfdc01_device::drq_w)
else else
m_fdc_local_status &= ~LS_DRQ_mask; m_fdc_local_status &= ~LS_DRQ_mask;
} }

View File

@ -86,7 +86,6 @@ a2bus_corvfdc02_device::a2bus_corvfdc02_device(const machine_config &mconfig, de
m_con3(*this, FDC02_FDC_TAG":2"), m_con3(*this, FDC02_FDC_TAG":2"),
m_con4(*this, FDC02_FDC_TAG":3") m_con4(*this, FDC02_FDC_TAG":3")
{ {
} }
a2bus_corvfdc02_device::a2bus_corvfdc02_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : a2bus_corvfdc02_device::a2bus_corvfdc02_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
@ -296,4 +295,3 @@ WRITE_LINE_MEMBER(a2bus_corvfdc02_device::drq_w)
} }
} }
} }

View File

@ -277,4 +277,3 @@ WRITE_LINE_MEMBER(a2bus_timemasterho_device::pia_irqb_w)
m_irqb = state; m_irqb = state;
update_irqs(); update_irqs();
} }

View File

@ -130,5 +130,3 @@ machine_config_constructor a78_rom_p450_vb_device::device_mconfig_additions() co
{ {
return MACHINE_CONFIG_NAME( a78_pokeyvb ); return MACHINE_CONFIG_NAME( a78_pokeyvb );
} }

View File

@ -75,4 +75,3 @@ WRITE8_MEMBER(a78_hiscore_device::write_40xx)
{ {
m_hscslot->write_40xx(space, offset, data); m_hscslot->write_40xx(space, offset, data);
} }

View File

@ -495,4 +495,3 @@ machine_config_constructor a78_rom_p450_sg9_device::device_mconfig_additions() c
{ {
return MACHINE_CONFIG_NAME( a78_pokey450 ); return MACHINE_CONFIG_NAME( a78_pokey450 );
} }

View File

@ -549,4 +549,3 @@ WRITE8_MEMBER(a800_cart_slot_device::write_d5xx)
if (m_cart) if (m_cart)
m_cart->write_d5xx(space, offset, data, mem_mask); m_cart->write_d5xx(space, offset, data, mem_mask);
} }

View File

@ -250,4 +250,3 @@ WRITE8_MEMBER(a800_rom_oss91_device::write_d5xx)
break; break;
} }
} }

View File

@ -445,4 +445,3 @@ WRITE8_MEMBER(a5200_rom_bbsb_device::write_80xx)
if (addr >= 0xff6 && addr <= 0xff9) if (addr >= 0xff6 && addr <= 0xff9)
m_banks[BIT(offset, 12)] = (addr - 0xff6); m_banks[BIT(offset, 12)] = (addr - 0xff6);
} }

View File

@ -69,4 +69,3 @@ WRITE8_MEMBER(a800_rom_spartados_device::write_d5xx)
m_bank = (offset ^ 0x07) & 0x0f; m_bank = (offset ^ 0x07) & 0x0f;
} }

View File

@ -294,5 +294,3 @@ WRITE8_MEMBER(apf_cart_slot_device::write_ram)
if (m_cart) if (m_cart)
m_cart->write_ram(space, offset, data); m_cart->write_ram(space, offset, data);
} }

View File

@ -112,6 +112,5 @@ extern const device_type APF_CART_SLOT;
#define MCFG_APF_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \ #define MCFG_APF_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \
MCFG_DEVICE_ADD(_tag, APF_CART_SLOT, 0) \ MCFG_DEVICE_ADD(_tag, APF_CART_SLOT, 0) \
MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false) \ MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false)
#endif #endif

View File

@ -260,4 +260,3 @@ READ8_MEMBER(arcadia_cart_slot_device::extra_rom)
else else
return 0xff; return 0xff;
} }

View File

@ -99,6 +99,5 @@ extern const device_type EA2001_CART_SLOT;
#define MCFG_ARCADIA_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \ #define MCFG_ARCADIA_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \
MCFG_DEVICE_ADD(_tag, EA2001_CART_SLOT, 0) \ MCFG_DEVICE_ADD(_tag, EA2001_CART_SLOT, 0) \
MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false) \ MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false)
#endif #endif

View File

@ -240,4 +240,3 @@ WRITE8_MEMBER(chanf_multi_final_device::write_bank)
m_base_bank = data & 0x1f; m_base_bank = data & 0x1f;
m_half_bank = BIT(data, 5); m_half_bank = BIT(data, 5);
} }

View File

@ -115,6 +115,5 @@ extern const device_type CHANF_CART_SLOT;
#define MCFG_CHANNELF_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \ #define MCFG_CHANNELF_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \
MCFG_DEVICE_ADD(_tag, CHANF_CART_SLOT, 0) \ MCFG_DEVICE_ADD(_tag, CHANF_CART_SLOT, 0) \
MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false) \ MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false)
#endif #endif

View File

@ -295,4 +295,3 @@ READ8_MEMBER(crvision_cart_slot_device::read_rom80)
else else
return 0xff; return 0xff;
} }

View File

@ -104,6 +104,5 @@ extern const device_type CRVISION_CART_SLOT;
#define MCFG_CRVISION_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \ #define MCFG_CRVISION_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \
MCFG_DEVICE_ADD(_tag, CRVISION_CART_SLOT, 0) \ MCFG_DEVICE_ADD(_tag, CRVISION_CART_SLOT, 0) \
MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false) \ MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false)
#endif #endif

View File

@ -121,4 +121,3 @@ WRITE8_MEMBER(generic_ram_linear_device::write_ram)
{ {
m_ram[offset % m_ram.bytes()] = data; m_ram[offset % m_ram.bytes()] = data;
} }

View File

@ -120,4 +120,3 @@ WRITE8_MEMBER(generic_romram_plain_device::write_ram)
if (offset < m_ram.bytes()) if (offset < m_ram.bytes())
m_ram[offset] = data; m_ram[offset] = data;
} }

View File

@ -283,4 +283,3 @@ WRITE8_MEMBER(generic_slot_device::write_ram)
if (m_cart) if (m_cart)
m_cart->write_ram(space, offset, data); m_cart->write_ram(space, offset, data);
} }

View File

@ -168,11 +168,9 @@ extern const device_type GENERIC_SOCKET;
#define MCFG_GENERIC_CARTSLOT_ADD(_tag, _slot_intf, _dev_intf) \ #define MCFG_GENERIC_CARTSLOT_ADD(_tag, _slot_intf, _dev_intf) \
MCFG_DEVICE_ADD(_tag, GENERIC_SOCKET, 0) \ MCFG_DEVICE_ADD(_tag, GENERIC_SOCKET, 0) \
MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, NULL, false) \ MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, NULL, false) \
MCFG_GENERIC_INTERFACE(_dev_intf) \ MCFG_GENERIC_INTERFACE(_dev_intf)
#define MCFG_GENERIC_SOCKET_ADD(_tag, _slot_intf, _dev_intf) \ #define MCFG_GENERIC_SOCKET_ADD(_tag, _slot_intf, _dev_intf) \
MCFG_DEVICE_ADD(_tag, GENERIC_SOCKET, 0) \ MCFG_DEVICE_ADD(_tag, GENERIC_SOCKET, 0) \
MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, NULL, false) \ MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, NULL, false) \
MCFG_GENERIC_INTERFACE(_dev_intf) \ MCFG_GENERIC_INTERFACE(_dev_intf)
#endif #endif

View File

@ -585,4 +585,3 @@ WRITE16_MEMBER(intv_ecs_device::write_ay)
if (ACCESSING_BITS_0_7) if (ACCESSING_BITS_0_7)
return m_snd->write(space, offset, data, mem_mask); return m_snd->write(space, offset, data, mem_mask);
} }

View File

@ -47,4 +47,3 @@ intv_wsmlb_device::intv_wsmlb_device(const machine_config &mconfig, const char *
: intv_rom_device(mconfig, INTV_ROM_WSMLB, "Intellivision World Series Baseball Cart", tag, owner, clock, "intv_wsmlb", __FILE__) : intv_rom_device(mconfig, INTV_ROM_WSMLB, "Intellivision World Series Baseball Cart", tag, owner, clock, "intv_wsmlb", __FILE__)
{ {
} }

View File

@ -569,4 +569,3 @@ SLOT_INTERFACE_START(intv_cart)
SLOT_INTERFACE_INTERNAL("intv_ecs", INTV_ROM_ECS) SLOT_INTERFACE_INTERNAL("intv_ecs", INTV_ROM_ECS)
// SLOT_INTERFACE_INTERNAL("intv_keycomp", INTV_ROM_KEYCOMP) // SLOT_INTERFACE_INTERNAL("intv_keycomp", INTV_ROM_KEYCOMP)
SLOT_INTERFACE_END SLOT_INTERFACE_END

View File

@ -176,8 +176,7 @@ extern const device_type INTV_CART_SLOT;
#define MCFG_INTV_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \ #define MCFG_INTV_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \
MCFG_DEVICE_ADD(_tag, INTV_CART_SLOT, 0) \ MCFG_DEVICE_ADD(_tag, INTV_CART_SLOT, 0) \
MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false) \ MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false)
SLOT_INTERFACE_EXTERN(intv_cart); SLOT_INTERFACE_EXTERN(intv_cart);

View File

@ -624,4 +624,3 @@ WRITE8_MEMBER(msx_cart_fsfd1a::write_cart)
break; break;
} }
} }

View File

@ -809,4 +809,3 @@ WRITE8_MEMBER(msx_slot_disk6_device::write)
break; break;
} }
} }

View File

@ -430,4 +430,3 @@ void nes_disksys_device::unload_disk(device_image_interface &image)
/* TODO: should write out changes here as well */ /* TODO: should write out changes here as well */
m_fds_sides = 0; m_fds_sides = 0;
} }

View File

@ -12,7 +12,6 @@
class o2_chess_device : public o2_rom_device class o2_chess_device : public o2_rom_device
{ {
virtual machine_config_constructor device_mconfig_additions() const; virtual machine_config_constructor device_mconfig_additions() const;
// virtual const rom_entry *device_rom_region() const; // virtual const rom_entry *device_rom_region() const;

View File

@ -94,4 +94,3 @@ READ8_MEMBER(o2_rom16_device::read_rom0c)
{ {
return m_rom[offset + 0xc00 + (m_bank_base & 0x03) * 0x1000]; return m_rom[offset + 0xc00 + (m_bank_base & 0x03) * 0x1000];
} }

View File

@ -278,4 +278,3 @@ SLOT_INTERFACE_START(o2_cart)
SLOT_INTERFACE_INTERNAL("o2_chess", O2_ROM_CHESS) SLOT_INTERFACE_INTERNAL("o2_chess", O2_ROM_CHESS)
SLOT_INTERFACE_INTERNAL("o2_voice", O2_ROM_VOICE) SLOT_INTERFACE_INTERNAL("o2_voice", O2_ROM_VOICE)
SLOT_INTERFACE_END SLOT_INTERFACE_END

View File

@ -114,8 +114,7 @@ extern const device_type O2_CART_SLOT;
#define MCFG_O2_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \ #define MCFG_O2_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \
MCFG_DEVICE_ADD(_tag, O2_CART_SLOT, 0) \ MCFG_DEVICE_ADD(_tag, O2_CART_SLOT, 0) \
MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false) \ MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false)
SLOT_INTERFACE_EXTERN(o2_cart); SLOT_INTERFACE_EXTERN(o2_cart);

View File

@ -65,4 +65,3 @@ DECLARE_WRITE_LINE_MEMBER( pet_userport_cb2_sound_device::input_m )
{ {
m_dac->write_unsigned8(state ? 0xff : 0x00); m_dac->write_unsigned8(state ? 0xff : 0x00);
} }

View File

@ -317,4 +317,3 @@ WRITE8_MEMBER(scv_cart_slot_device::write_bank)
if (m_cart) if (m_cart)
m_cart->write_bank(space, offset, data); m_cart->write_bank(space, offset, data);
} }

View File

@ -115,6 +115,5 @@ extern const device_type SCV_CART_SLOT;
#define MCFG_SCV_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \ #define MCFG_SCV_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \
MCFG_DEVICE_ADD(_tag, SCV_CART_SLOT, 0) \ MCFG_DEVICE_ADD(_tag, SCV_CART_SLOT, 0) \
MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false) \ MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false)
#endif #endif

View File

@ -873,4 +873,3 @@ SLOT_INTERFACE_START(gg_cart)
SLOT_INTERFACE_INTERNAL("codemasters", SEGA8_ROM_CODEMASTERS) SLOT_INTERFACE_INTERNAL("codemasters", SEGA8_ROM_CODEMASTERS)
SLOT_INTERFACE_INTERNAL("mgear", SEGA8_ROM_MGEAR) SLOT_INTERFACE_INTERNAL("mgear", SEGA8_ROM_MGEAR)
SLOT_INTERFACE_END SLOT_INTERFACE_END

View File

@ -155,4 +155,3 @@ void sms_graphic_device::peripheral_w(UINT8 data)
m_previous_write = data; m_previous_write = data;
} }

View File

@ -111,6 +111,5 @@ extern const device_type VBOY_CART_SLOT;
#define MCFG_VBOY_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \ #define MCFG_VBOY_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \
MCFG_DEVICE_ADD(_tag, VBOY_CART_SLOT, 0) \ MCFG_DEVICE_ADD(_tag, VBOY_CART_SLOT, 0) \
MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false) \ MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false)
#endif #endif

View File

@ -294,5 +294,3 @@ WRITE8_MEMBER(vc4000_cart_slot_device::write_ram)
if (m_cart) if (m_cart)
m_cart->write_ram(space, offset, data); m_cart->write_ram(space, offset, data);
} }

View File

@ -112,6 +112,5 @@ extern const device_type VC4000_CART_SLOT;
#define MCFG_VC4000_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \ #define MCFG_VC4000_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \
MCFG_DEVICE_ADD(_tag, VC4000_CART_SLOT, 0) \ MCFG_DEVICE_ADD(_tag, VC4000_CART_SLOT, 0) \
MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false) \ MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false)
#endif #endif

View File

@ -279,4 +279,3 @@ DIRECT_UPDATE_MEMBER(a26_rom_dpc_device::cart_opbase)
} }
return address; return address;
} }

View File

@ -1046,4 +1046,3 @@ READ8_MEMBER(a26_rom_32in1_device::read_rom)
{ {
return m_rom[(offset & 0x7ff) + (m_base_bank * 0x800)]; return m_rom[(offset & 0x7ff) + (m_base_bank * 0x800)];
} }

View File

@ -278,5 +278,3 @@ WRITE8_MEMBER(vectrex_cart_slot_device::write_bank)
if (m_cart) if (m_cart)
m_cart->write_bank(space, offset, data); m_cart->write_bank(space, offset, data);
} }

View File

@ -111,6 +111,5 @@ extern const device_type VECTREX_CART_SLOT;
#define MCFG_VECTREX_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \ #define MCFG_VECTREX_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \
MCFG_DEVICE_ADD(_tag, VECTREX_CART_SLOT, 0) \ MCFG_DEVICE_ADD(_tag, VECTREX_CART_SLOT, 0) \
MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false) \ MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false)
#endif #endif

View File

@ -125,6 +125,5 @@ extern const device_type WS_CART_SLOT;
#define MCFG_WSWAN_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \ #define MCFG_WSWAN_CARTRIDGE_ADD(_tag,_slot_intf,_def_slot) \
MCFG_DEVICE_ADD(_tag, WS_CART_SLOT, 0) \ MCFG_DEVICE_ADD(_tag, WS_CART_SLOT, 0) \
MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false) \ MCFG_DEVICE_SLOT_INTERFACE(_slot_intf, _def_slot, false)
#endif #endif

View File

@ -514,4 +514,3 @@ offs_t dsp56k_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *o
extern CPU_DISASSEMBLE( dsp56k ); extern CPU_DISASSEMBLE( dsp56k );
return CPU_DISASSEMBLE_NAME(dsp56k)(this, buffer, pc, oprom, opram, options); return CPU_DISASSEMBLE_NAME(dsp56k)(this, buffer, pc, oprom, opram, options);
} }

View File

@ -3565,5 +3565,3 @@ void rsp_device::execute_run()
} }
} }

View File

@ -9029,4 +9029,3 @@ void rsp_device::log_add_disasm_comment(drcuml_block *block, UINT32 pc, UINT32 o
block->append_comment("%08X: %s", pc, buffer); // comment block->append_comment("%08X: %s", pc, buffer); // comment
#endif #endif
} }

View File

@ -38,4 +38,3 @@ cpu_device::cpu_device(const machine_config &mconfig, device_type type, const ch
cpu_device::~cpu_device() cpu_device::~cpu_device()
{ {
} }

View File

@ -226,4 +226,3 @@ bool dmk_format::supports_save() const
const floppy_format_type FLOPPY_DMK_FORMAT = &floppy_image_format_creator<dmk_format>; const floppy_format_type FLOPPY_DMK_FORMAT = &floppy_image_format_creator<dmk_format>;

View File

@ -31,4 +31,3 @@ public:
extern const floppy_format_type FLOPPY_DMK_FORMAT; extern const floppy_format_type FLOPPY_DMK_FORMAT;
#endif /* DMK_DSK_H */ #endif /* DMK_DSK_H */

View File

@ -1587,7 +1587,6 @@ static void parse_http_headers(char **buf, struct mg_connection *ri) {
static const char *status_code_to_str(int status_code) { static const char *status_code_to_str(int status_code) {
switch (status_code) { switch (status_code) {
case 100: return "Continue"; case 100: return "Continue";
case 101: return "Switching Protocols"; case 101: return "Switching Protocols";
case 102: return "Processing"; case 102: return "Processing";
@ -3021,7 +3020,6 @@ static int find_index_file(struct connection *conn, char *path,
// Traverse index files list. For each entry, append it to the given // Traverse index files list. For each entry, append it to the given
// path and see if the file exists. If it exists, break the loop // path and see if the file exists. If it exists, break the loop
while ((list = next_option(list, &filename_vec, NULL)) != NULL) { while ((list = next_option(list, &filename_vec, NULL)) != NULL) {
// Ignore too long entries that may overflow path buffer // Ignore too long entries that may overflow path buffer
if (filename_vec.len > (int) (path_len - (n + 2))) if (filename_vec.len > (int) (path_len - (n + 2)))
continue; continue;
@ -4752,7 +4750,6 @@ static int get_var(const char *data, size_t data_len, const char *name,
for (p = data; p + name_len < e; p++) { for (p = data; p + name_len < e; p++) {
if ((p == data || p[-1] == '&') && p[name_len] == '=' && if ((p == data || p[-1] == '&') && p[name_len] == '=' &&
!mg_strncasecmp(name, p, name_len)) { !mg_strncasecmp(name, p, name_len)) {
// Point p to variable value // Point p to variable value
p += name_len + 1; p += name_len + 1;

View File

@ -414,7 +414,6 @@ static void set_ea(address_space &space, int ea)
void mario_state::sound_start() void mario_state::sound_start()
{ {
device_t *audiocpu = machine().device("audiocpu"); device_t *audiocpu = machine().device("audiocpu");
if (!audiocpu) return; if (!audiocpu) return;

View File

@ -775,4 +775,3 @@ ROM_END
GAME( 1998, hostinv, 0, hostinv, calchase, calchase_state, hostinv, ROT0, "The Game Room", "Host Invaders", GAME_NOT_WORKING|GAME_IMPERFECT_GRAPHICS ) GAME( 1998, hostinv, 0, hostinv, calchase, calchase_state, hostinv, ROT0, "The Game Room", "Host Invaders", GAME_NOT_WORKING|GAME_IMPERFECT_GRAPHICS )
GAME( 1999, calchase, 0, calchase, calchase, calchase_state, calchase, ROT0, "The Game Room", "California Chase", GAME_NOT_WORKING|GAME_IMPERFECT_GRAPHICS ) GAME( 1999, calchase, 0, calchase, calchase, calchase_state, calchase, ROT0, "The Game Room", "California Chase", GAME_NOT_WORKING|GAME_IMPERFECT_GRAPHICS )
GAME( 2002, eggsplc, 0, calchase, calchase, calchase_state, hostinv, ROT0, "The Game Room", "Eggs Playing Chicken", GAME_NOT_WORKING|GAME_IMPERFECT_GRAPHICS ) GAME( 2002, eggsplc, 0, calchase, calchase, calchase_state, hostinv, ROT0, "The Game Room", "Eggs Playing Chicken", GAME_NOT_WORKING|GAME_IMPERFECT_GRAPHICS )

View File

@ -158,7 +158,6 @@ private:
void mgavegas_state::update_lamp(){ void mgavegas_state::update_lamp(){
//output_set_value("AUXS", m_auxs); //unused //output_set_value("AUXS", m_auxs); //unused
output_set_value("MGA4", m_anal&0x01); output_set_value("MGA4", m_anal&0x01);
output_set_value("MGA3", m_anacl&0x01); output_set_value("MGA3", m_anacl&0x01);
@ -304,7 +303,6 @@ UINT8 ret=0;
WRITE8_MEMBER(mgavegas_state::w_a0) WRITE8_MEMBER(mgavegas_state::w_a0)
{ {
if (LOG_AY8910) if (LOG_AY8910)
logerror("write to %04X data = %02X \n",offset+0xa000,data); logerror("write to %04X data = %02X \n",offset+0xa000,data);
@ -344,7 +342,6 @@ UINT8 ret=0;
WRITE8_MEMBER(mgavegas_state::csoki_w) WRITE8_MEMBER(mgavegas_state::csoki_w)
{ {
if (LOG_MSM5205) if (LOG_MSM5205)
logerror("MSM5205 write to %04X data = %02X \n",offset+0xc800,data); logerror("MSM5205 write to %04X data = %02X \n",offset+0xc800,data);
m_msm->reset_w(data&0x10>>4); m_msm->reset_w(data&0x10>>4);
@ -486,7 +483,6 @@ INPUT_PORTS_END
void mgavegas_state::machine_reset() void mgavegas_state::machine_reset()
{ {
m_int=1; m_int=1;
m_custom_data=U64(0xffffffffffffffff); m_custom_data=U64(0xffffffffffffffff);

View File

@ -3849,8 +3849,7 @@ TIMER_DEVICE_CALLBACK_MEMBER(nmk16_state::nmk16_scanline)
} }
#define NMK_HACKY_INTERRUPT_TIMING \ #define NMK_HACKY_INTERRUPT_TIMING \
MCFG_TIMER_DRIVER_ADD_SCANLINE("scantimer", nmk16_state, nmk16_scanline, "screen", 0, 1) \ MCFG_TIMER_DRIVER_ADD_SCANLINE("scantimer", nmk16_state, nmk16_scanline, "screen", 0, 1)
#define NMK_HACKY_SCREEN_LOWRES \ #define NMK_HACKY_SCREEN_LOWRES \
MCFG_SCREEN_ADD("screen", RASTER) \ MCFG_SCREEN_ADD("screen", RASTER) \
MCFG_SCREEN_REFRESH_RATE(56.18) \ MCFG_SCREEN_REFRESH_RATE(56.18) \

View File

@ -617,4 +617,3 @@ GAME( 1983, motorace, travrusa, travrusa, motorace, travrusa_state, motorace, RO
GAME( 1985, shtrider, 0, shtrider, shtrider, driver_device, 0, ROT270|ORIENTATION_FLIP_X, "Seibu Kaihatsu", "Shot Rider", GAME_SUPPORTS_SAVE ) // possible bootleg GAME( 1985, shtrider, 0, shtrider, shtrider, driver_device, 0, ROT270|ORIENTATION_FLIP_X, "Seibu Kaihatsu", "Shot Rider", GAME_SUPPORTS_SAVE ) // possible bootleg
GAME( 1984, shtridera,shtrider, shtrider, shtrider, travrusa_state, shtridra, ROT270|ORIENTATION_FLIP_X, "Seibu Kaihatsu (Sigma license)", "Shot Rider (Sigma license)", GAME_SUPPORTS_SAVE ) GAME( 1984, shtridera,shtrider, shtrider, shtrider, travrusa_state, shtridra, ROT270|ORIENTATION_FLIP_X, "Seibu Kaihatsu (Sigma license)", "Shot Rider (Sigma license)", GAME_SUPPORTS_SAVE )
GAME( 1985, shtriderb,shtrider, shtriderb,shtrider, travrusa_state, shtridrb, ROT270|ORIENTATION_FLIP_X, "bootleg", "Shot Rider (bootleg)", GAME_SUPPORTS_SAVE ) // resets when you attempt to start a game? GAME( 1985, shtriderb,shtrider, shtriderb,shtrider, travrusa_state, shtridrb, ROT270|ORIENTATION_FLIP_X, "bootleg", "Shot Rider (bootleg)", GAME_SUPPORTS_SAVE ) // resets when you attempt to start a game?

View File

@ -91,5 +91,3 @@ public:
optional_device<raiden2cop_device> m_raiden2cop; optional_device<raiden2cop_device> m_raiden2cop;
}; };

View File

@ -525,7 +525,6 @@ int raiden2cop_device::find_trigger_match(UINT16 triggerval, UINT16 mask)
if (matched == 1) if (matched == 1)
{ {
int j; int j;
seibu_cop_log(" Sequence: "); seibu_cop_log(" Sequence: ");
for (j=0;j<0x8;j++) for (j=0;j<0x8;j++)
@ -2311,7 +2310,3 @@ WRITE16_MEMBER(raiden2cop_device::LEGACY_cop_cmd_w)
if (executed == 0) if (executed == 0)
printf("did not execute %04x\n", data); // cup soccer triggers this a lot (and others) printf("did not execute %04x\n", data); // cup soccer triggers this a lot (and others)
} }

View File

@ -129,7 +129,6 @@ public:
struct colinfo { struct colinfo {
colinfo() colinfo()
{ {
pos[0] = pos[1] = pos[2] = 0; pos[0] = pos[1] = pos[2] = 0;

View File

@ -25,8 +25,6 @@ seibu_cop_bootleg_device::seibu_cop_bootleg_device(const machine_config &mconfig
m_cop_mcu_ram(NULL), m_cop_mcu_ram(NULL),
m_raiden2cop(*this, ":raiden2cop") m_raiden2cop(*this, ":raiden2cop")
{ {
} }
#define seibu_cop_log logerror #define seibu_cop_log logerror
@ -218,5 +216,3 @@ WRITE16_MEMBER( seibu_cop_bootleg_device::copdxbl_0_w )
} }
} }
} }

View File

@ -30,4 +30,3 @@ extern const device_type SEIBU_COP_BOOTLEG;
#define MCFG_SEIBU_COP_ADD(_tag) \ #define MCFG_SEIBU_COP_ADD(_tag) \
MCFG_DEVICE_ADD(_tag, SEIBU_COP_BOOTLEG, 0) MCFG_DEVICE_ADD(_tag, SEIBU_COP_BOOTLEG, 0)

View File

@ -737,4 +737,3 @@ UINT32 st0016_cpu_device::update(screen_device &screen, bitmap_ind16 &bitmap, co
st0016_draw_screen(screen, bitmap, cliprect); st0016_draw_screen(screen, bitmap, cliprect);
return 0; return 0;
} }

View File

@ -2099,4 +2099,3 @@ void antic_device::generic_interrupt(int button_count)
/* refresh the display (translate color clocks to pixels) */ /* refresh the display (translate color clocks to pixels) */
linerefresh(); linerefresh();
} }

View File

@ -297,8 +297,7 @@
for (int i = 0; i < size; i++) \ for (int i = 0; i < size; i++) \
{ \ { \
*dst++ = (PBK << 24) | (PBK << 16) | (PBK << 8) | PBK; \ *dst++ = (PBK << 24) | (PBK << 16) | (PBK << 8) | PBK; \
} \ }
#define ZAP48() \ #define ZAP48() \
dst = (UINT32 *)&antic.cclock[PMOFFSET]; \ dst = (UINT32 *)&antic.cclock[PMOFFSET]; \
dst[ 0] = (PBK << 24) | (PBK << 16) | (PBK << 8) | PBK; \ dst[ 0] = (PBK << 24) | (PBK << 16) | (PBK << 8) | PBK; \
@ -312,8 +311,7 @@
for (int i = 0; i < size; i++) \ for (int i = 0; i < size; i++) \
{ \ { \
FUNC(i); \ FUNC(i); \
} \ }
struct ANTIC_R { struct ANTIC_R {

View File

@ -1,2 +1 @@
// delete me // delete me

View File

@ -225,7 +225,6 @@ inline void dooyong_state::lastday_get_tile_info(tile_data &tileinfo, int tile_i
} }
else else
{ {
/* primella */ /* primella */
/* Tiles take two bytes in ROM: /* Tiles take two bytes in ROM:
MSB LSB MSB LSB

View File

@ -40,4 +40,3 @@ extern const device_type FUUKI_VIDEO;
#define MCFG_FUUKI_VIDEO_GFXDECODE(_gfxtag) \ #define MCFG_FUUKI_VIDEO_GFXDECODE(_gfxtag) \
fuukivid_device::static_set_gfxdecode_tag(*device, "^" _gfxtag); fuukivid_device::static_set_gfxdecode_tag(*device, "^" _gfxtag);

View File

@ -194,7 +194,6 @@ TILE_GET_INFO_MEMBER(legionna_state::get_text_tile_info)
VIDEO_START_MEMBER(legionna_state,legionna) VIDEO_START_MEMBER(legionna_state,legionna)
{ {
m_back_data = auto_alloc_array_clear(machine(), UINT16, 0x800/2); m_back_data = auto_alloc_array_clear(machine(), UINT16, 0x800/2);
m_fore_data = auto_alloc_array_clear(machine(), UINT16, 0x800/2); m_fore_data = auto_alloc_array_clear(machine(), UINT16, 0x800/2);
m_mid_data = auto_alloc_array_clear(machine(), UINT16, 0x800/2); m_mid_data = auto_alloc_array_clear(machine(), UINT16, 0x800/2);
@ -220,7 +219,6 @@ VIDEO_START_MEMBER(legionna_state,legionna)
VIDEO_START_MEMBER(legionna_state,denjinmk) VIDEO_START_MEMBER(legionna_state,denjinmk)
{ {
m_back_data = auto_alloc_array_clear(machine(), UINT16, 0x800/2); m_back_data = auto_alloc_array_clear(machine(), UINT16, 0x800/2);
m_fore_data = auto_alloc_array_clear(machine(), UINT16, 0x800/2); m_fore_data = auto_alloc_array_clear(machine(), UINT16, 0x800/2);
m_mid_data = auto_alloc_array_clear(machine(), UINT16, 0x800/2); m_mid_data = auto_alloc_array_clear(machine(), UINT16, 0x800/2);
@ -499,9 +497,6 @@ UINT32 legionna_state::screen_update_legionna(screen_device &screen, bitmap_ind1
UINT32 legionna_state::screen_update_godzilla(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) UINT32 legionna_state::screen_update_godzilla(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{ {
bitmap.fill(0x0200, cliprect); bitmap.fill(0x0200, cliprect);
screen.priority().fill(0, cliprect); screen.priority().fill(0, cliprect);
@ -521,8 +516,6 @@ UINT32 legionna_state::screen_update_godzilla(screen_device &screen, bitmap_ind1
UINT32 legionna_state::screen_update_grainbow(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) UINT32 legionna_state::screen_update_grainbow(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{ {
bitmap.fill(m_palette->black_pen(), cliprect); bitmap.fill(m_palette->black_pen(), cliprect);
screen.priority().fill(0, cliprect); screen.priority().fill(0, cliprect);

View File

@ -237,7 +237,6 @@ void mario_state::draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect,
} }
else else
{ {
m_gfxdecode->gfx(1)->transpen(bitmap, cliprect, m_gfxdecode->gfx(1)->transpen(bitmap, cliprect,
code, code,
color, color,

View File

@ -746,7 +746,7 @@ cached_texture *model3_state::get_texture(int page, int texx, int texy, int texw
LOD Culling Node. Up to 4 LODs. LOD Culling Node. Up to 4 LODs.
Articulated Part Culling Node (is this used by Model 3?) Articulated Part Culling Node (is this used by Model 3?)
- An Articulated Part culling node, or six degreeoffreedom node, is used to define - An Articulated Part culling node, or six degree?of?freedom node, is used to define
geometry that can move relative to the parent coordinate set to which it is attached. geometry that can move relative to the parent coordinate set to which it is attached.
Fifteen levels of coordinate set nesting (levels of articulation) are supported. Fifteen levels of coordinate set nesting (levels of articulation) are supported.

View File

@ -8433,4 +8433,3 @@ COMP(19??, hbf9sp, 0, 0, hbf9sp, msx2jp, driver_device, 0, "Son
/* Temporary placeholders, Turbo-R hardware is not supported yet */ /* Temporary placeholders, Turbo-R hardware is not supported yet */
COMP(19??, fsa1gt, 0, 0, fsa1gt, msx2jp, driver_device, 0, "Panasonic", "FS-A1GT (MSX Turbo-R)", GAME_NOT_WORKING) COMP(19??, fsa1gt, 0, 0, fsa1gt, msx2jp, driver_device, 0, "Panasonic", "FS-A1GT (MSX Turbo-R)", GAME_NOT_WORKING)
COMP(19??, fsa1st, 0, 0, fsa1st, msx2jp, driver_device, 0, "Panasonic", "FS-A1ST (MSX Turbo-R)", GAME_NOT_WORKING) COMP(19??, fsa1st, 0, 0, fsa1st, msx2jp, driver_device, 0, "Panasonic", "FS-A1ST (MSX Turbo-R)", GAME_NOT_WORKING)

View File

@ -1275,4 +1275,3 @@ WRITE_LINE_MEMBER(apple3_state::a2bus_nmi_w)
m_maincpu->set_input_line(INPUT_LINE_NMI, state); m_maincpu->set_input_line(INPUT_LINE_NMI, state);
} }
} }

View File

@ -2140,4 +2140,3 @@ DEVICE_IMAGE_LOAD_MEMBER( lynx_state, lynx_cart )
return IMAGE_INIT_PASS; return IMAGE_INIT_PASS;
} }

View File

@ -83,4 +83,3 @@ DRIVER_INIT_MEMBER( nc_state, nc )
set_card_present_state(0); set_card_present_state(0);
m_card_size = 0; m_card_size = 0;
} }

View File

@ -11,4 +11,3 @@
//============================================================ //============================================================
#include "../windows/winptty.c" #include "../windows/winptty.c"

View File

@ -9,4 +9,4 @@
***************************************************************************/ ***************************************************************************/
extern const char build_version[]; extern const char build_version[];
const char build_version[] = "0.154 (" __DATE__")"; const char build_version[] = "0.155 (" __DATE__")";