Fixed some typos

This commit is contained in:
Cesare Falco 2015-01-05 16:09:44 +01:00
parent fc402057e7
commit dc4d109df6
5 changed files with 8 additions and 8 deletions

View File

@ -105,7 +105,7 @@ static INPUT_PORTS_START( dmv_k220 )
PORT_DIPNAME( 0x20, 0x20, "Detail Message" )
PORT_DIPSETTING( 0x00, DEF_STR(Off) )
PORT_DIPSETTING( 0x20, DEF_STR(On) )
PORT_DIPNAME( 0x40, 0x40, "Continous Run" )
PORT_DIPNAME( 0x40, 0x40, "Continuous Run" )
PORT_DIPSETTING( 0x00, DEF_STR(Off) )
PORT_DIPSETTING( 0x40, DEF_STR(On) )
PORT_DIPNAME( 0x80, 0x80, "Diagnostic module" )

View File

@ -591,7 +591,7 @@ void h8_sci_device::rx_start()
ssr |= SSR_TDRE;
rx_parity = smr & SMR_OE ? 0 : 1;
rsr = 0x00;
logerror("%s: start recieve\n", tag());
logerror("%s: start receive\n", tag());
if(smr & SMR_CA) {
rx_state = ST_BIT;
rx_bit = 8;
@ -609,13 +609,13 @@ void h8_sci_device::rx_done()
if(!(ssr & SSR_FER)) {
if((smr & SMR_PE) && rx_parity) {
ssr |= SSR_PER;
logerror("%s: Recieve parity error\n", tag());
logerror("%s: Receive parity error\n", tag());
} else if(ssr & SSR_RDRF) {
ssr |= SSR_ORER;
logerror("%s: Recieve overrun\n", tag());
logerror("%s: Receive overrun\n", tag());
} else {
ssr |= SSR_RDRF;
logerror("%s: Recieved %02x\n", tag(), rsr);
logerror("%s: Received %02x\n", tag(), rsr);
rdr = rsr;
}
}

View File

@ -171,7 +171,7 @@ static INPUT_PORTS_START( sage2 )
PORT_DIPNAME( 0x40, 0x00, "IEEE-488 LISTEN" ) PORT_DIPLOCATION("J6:7")
PORT_DIPSETTING( 0x00, "Disabled" )
PORT_DIPSETTING( 0x40, "Enabled" )
PORT_DIPNAME( 0x80, 0x00, "IEEE-488 Consecutive Adresses" ) PORT_DIPLOCATION("J6:8")
PORT_DIPNAME( 0x80, 0x00, "IEEE-488 Consecutive Addresses" ) PORT_DIPLOCATION("J6:8")
PORT_DIPSETTING( 0x00, "1" )
PORT_DIPSETTING( 0x80, "2" )
INPUT_PORTS_END

View File

@ -940,7 +940,7 @@ TIMER_CALLBACK_MEMBER(pce_cd_device::data_timer_callback)
}
else
{
logerror("Succesfully read mode1 frame #%d\n", m_current_frame);
logerror("Successfully read mode1 frame #%d\n", m_current_frame);
}
m_data_buffer_index = 0;

View File

@ -1154,7 +1154,7 @@ void wswan_video_device::scanline_interrupt()
else
m_timer_hblank_reload = 0;
logerror( "trigerring hbltmr interrupt\n" );
logerror( "triggering hbltmr interrupt\n" );
m_set_irq_cb(WSWAN_VIDEO_IFLAG_HBLTMR);
}
}