Semicolon surgery

This commit is contained in:
AJR 2022-11-15 14:12:21 -05:00
parent 345ec031f5
commit eb110e8b30
5 changed files with 5 additions and 5 deletions

View File

@ -63,7 +63,7 @@ protected:
virtual void write_cb2(int state) override;
private:
bool m_turbo;;
bool m_turbo;
};

View File

@ -852,7 +852,7 @@ void mpu3_state::mpu3base(machine_config &config)
m_reels[0]->optic_handler().set(FUNC(mpu3_state::reel_optic_cb<0>));
REEL(config, m_reels[1], MPU3_48STEP_REEL, 96, 2, 0x00, 2);
m_reels[1]->optic_handler().set(FUNC(mpu3_state::reel_optic_cb<1>));
REEL(config, m_reels[2], MPU3_48STEP_REEL, 96, 2, 0x00, 2);;
REEL(config, m_reels[2], MPU3_48STEP_REEL, 96, 2, 0x00, 2);
m_reels[2]->optic_handler().set(FUNC(mpu3_state::reel_optic_cb<2>));
REEL(config, m_reels[3], MPU3_48STEP_REEL, 96, 2, 0x00, 2);
m_reels[3]->optic_handler().set(FUNC(mpu3_state::reel_optic_cb<3>));

View File

@ -98,7 +98,7 @@ void stargame_state::maincpu_io(address_map &map)
map(0x20, 0x2f).r(FUNC(stargame_state::csw2_r)).w(FUNC(stargame_state::csw2_w)); // CSW2 - input lines (spcship), output lines (whtforce)
map(0x30, 0x3f).r(FUNC(stargame_state::csw1_r)); // CSW1 - input lines
map(0x40, 0x4f).w(FUNC(stargame_state::cdig_w)); // CDIG - score display
map(0x50, 0x57).mirror(0x08).w(FUNC(stargame_state::cdriv_w));; // CDRIV - lamps and solenoids
map(0x50, 0x57).mirror(0x08).w(FUNC(stargame_state::cdriv_w)); // CDRIV - lamps and solenoids
map(0x60, 0x67).mirror(0x08).w("mainlatch", FUNC(ls259_device::write_d0)); // CPOR
map(0x68, 0x68).mirror(0x06).w(FUNC(stargame_state::ckdis_w)); // 68=CKDIS (sch has 68 and 69 the wrong way around)
map(0x69, 0x69).mirror(0x06); // 69=CKPRI (not used?)

View File

@ -794,7 +794,7 @@ void dpb7000_state::machine_start()
save_item(NAME(m_diskseq_cyl_write_pending));
save_item(NAME(m_diskseq_use_hdd_pending));
save_item(NAME(m_diskseq_command_stride));
m_diskseq_complete_clk = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(dpb7000_state::req_b_w), this));;
m_diskseq_complete_clk = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(dpb7000_state::req_b_w), this));
m_diskseq_complete_clk->adjust(attotime::never);
// Floppy Disc Controller Card

View File

@ -510,7 +510,7 @@ void atm_state::atm(machine_config &config)
subdevice<gfxdecode_device>("gfxdecode")->set_info(gfx_atm);
BETA_DISK(config, m_beta, 0);
ATA_INTERFACE(config, m_ata).options(atm_ata_devices, nullptr, nullptr, false);;
ATA_INTERFACE(config, m_ata).options(atm_ata_devices, nullptr, nullptr, false);
CENTRONICS(config, m_centronics, centronics_devices, "covox");
output_latch_device &cent_data_out(OUTPUT_LATCH(config, "cent_data_out"));