Previous 199869 Revisions Next

r34190 Monday 5th January, 2015 at 15:09:44 UTC by Cesare Falco
Fixed some typos
[src/emu/bus/dmv]k220.c
[src/emu/cpu/h8]h8_sci.c
[src/mess/drivers]sage2.c
[src/mess/machine]pce_cd.c
[src/mess/video]wswan_video.c

trunk/src/emu/bus/dmv/k220.c
r242701r242702
105105   PORT_DIPNAME( 0x20, 0x20, "Detail Message" )
106106   PORT_DIPSETTING( 0x00, DEF_STR(Off) )
107107   PORT_DIPSETTING( 0x20, DEF_STR(On) )
108   PORT_DIPNAME( 0x40, 0x40, "Continous Run" )
108   PORT_DIPNAME( 0x40, 0x40, "Continuous Run" )
109109   PORT_DIPSETTING( 0x00, DEF_STR(Off) )
110110   PORT_DIPSETTING( 0x40, DEF_STR(On) )
111111   PORT_DIPNAME( 0x80, 0x80, "Diagnostic module" )
trunk/src/emu/cpu/h8/h8_sci.c
r242701r242702
591591   ssr |= SSR_TDRE;
592592   rx_parity = smr & SMR_OE ? 0 : 1;
593593   rsr = 0x00;
594   logerror("%s: start recieve\n", tag());
594   logerror("%s: start receive\n", tag());
595595   if(smr & SMR_CA) {
596596      rx_state = ST_BIT;
597597      rx_bit = 8;
r242701r242702
609609   if(!(ssr & SSR_FER)) {
610610      if((smr & SMR_PE) && rx_parity) {
611611         ssr |= SSR_PER;
612         logerror("%s: Recieve parity error\n", tag());
612         logerror("%s: Receive parity error\n", tag());
613613      } else if(ssr & SSR_RDRF) {
614614         ssr |= SSR_ORER;
615         logerror("%s: Recieve overrun\n", tag());
615         logerror("%s: Receive overrun\n", tag());
616616      } else {
617617         ssr |= SSR_RDRF;
618         logerror("%s: Recieved %02x\n", tag(), rsr);
618         logerror("%s: Received %02x\n", tag(), rsr);
619619         rdr = rsr;
620620      }
621621   }
trunk/src/mess/drivers/sage2.c
r242701r242702
171171   PORT_DIPNAME( 0x40, 0x00, "IEEE-488 LISTEN" ) PORT_DIPLOCATION("J6:7")
172172   PORT_DIPSETTING(    0x00, "Disabled" )
173173   PORT_DIPSETTING(    0x40, "Enabled" )
174   PORT_DIPNAME( 0x80, 0x00, "IEEE-488 Consecutive Adresses" ) PORT_DIPLOCATION("J6:8")
174   PORT_DIPNAME( 0x80, 0x00, "IEEE-488 Consecutive Addresses" ) PORT_DIPLOCATION("J6:8")
175175   PORT_DIPSETTING(    0x00, "1" )
176176   PORT_DIPSETTING(    0x80, "2" )
177177INPUT_PORTS_END
trunk/src/mess/machine/pce_cd.c
r242701r242702
940940      }
941941      else
942942      {
943         logerror("Succesfully read mode1 frame #%d\n", m_current_frame);
943         logerror("Successfully read mode1 frame #%d\n", m_current_frame);
944944      }
945945
946946      m_data_buffer_index = 0;
trunk/src/mess/video/wswan_video.c
r242701r242702
11541154         else
11551155            m_timer_hblank_reload = 0;
11561156
1157         logerror( "trigerring hbltmr interrupt\n" );
1157         logerror( "triggering hbltmr interrupt\n" );
11581158         m_set_irq_cb(WSWAN_VIDEO_IFLAG_HBLTMR);
11591159      }
11601160   }


Previous 199869 Revisions Next


© 1997-2024 The MAME Team