From 6f103c2391d3943f26e8b82983f07f4a671c0ddd Mon Sep 17 00:00:00 2001 From: Jordi Mallach Date: Thu, 29 Sep 2016 09:52:34 +0200 Subject: [PATCH] Fix various spelling fixes. --- src/devices/bus/isa/omti8621.cpp | 2 +- src/devices/machine/z80scc.cpp | 4 ++-- src/devices/sound/sp0256.cpp | 2 +- src/devices/video/mga2064w.cpp | 2 +- src/emu/debug/debughlp.cpp | 2 +- src/emu/tilemap.h | 2 +- src/mame/drivers/cps1.cpp | 2 +- src/mame/drivers/fireball.cpp | 4 ++-- src/mame/drivers/gsword.cpp | 8 ++++---- src/mame/drivers/mpu4sw.hxx | 2 +- src/mame/drivers/pcipc.cpp | 2 +- src/mame/drivers/sbasketb.cpp | 2 +- src/mame/drivers/senjyo.cpp | 4 ++-- src/mame/drivers/zapcomputer.cpp | 2 +- src/mame/machine/m1comm.cpp | 4 ++-- src/mame/machine/m2comm.cpp | 4 ++-- src/mame/machine/s32comm.cpp | 12 ++++++------ src/mame/video/rltennis.cpp | 4 ++-- 18 files changed, 32 insertions(+), 32 deletions(-) diff --git a/src/devices/bus/isa/omti8621.cpp b/src/devices/bus/isa/omti8621.cpp index cdf86b0034a..fdcfb956146 100644 --- a/src/devices/bus/isa/omti8621.cpp +++ b/src/devices/bus/isa/omti8621.cpp @@ -672,7 +672,7 @@ void omti8621_device::format_track(const UINT8 * cdb) } /*************************************************************************** - set_esdi_defect_list - setup the (emty) ESDI defect list + set_esdi_defect_list - setup the (empty) ESDI defect list ***************************************************************************/ void omti8621_device::set_esdi_defect_list(UINT8 lun, UINT8 head) diff --git a/src/devices/machine/z80scc.cpp b/src/devices/machine/z80scc.cpp index 04a197d0e1a..3d6aa9cf19e 100644 --- a/src/devices/machine/z80scc.cpp +++ b/src/devices/machine/z80scc.cpp @@ -1601,7 +1601,7 @@ void z80scc_channel::do_sccreg_wr4(UINT8 data) LOG(("%s(%02x) Setting up asynchronous frame format and clock\n", FUNCNAME, data)); if (data == m_wr4) { - logerror("- supressing reinit of Tx as write to wr4 is identical to previous value\n"); + logerror("- suppressing reinit of Tx as write to wr4 is identical to previous value\n"); } else { @@ -1621,7 +1621,7 @@ void z80scc_channel::do_sccreg_wr5(UINT8 data) LOG(("%s(%02x) Setting up the transmitter\n", FUNCNAME, data)); if (data == m_wr5) { - logerror("- supressing reinit of Tx as write to wr5 is identical to previous value\n"); + logerror("- suppressing reinit of Tx as write to wr5 is identical to previous value\n"); } else { diff --git a/src/devices/sound/sp0256.cpp b/src/devices/sound/sp0256.cpp index f052c30987e..5467f3910ae 100644 --- a/src/devices/sound/sp0256.cpp +++ b/src/devices/sound/sp0256.cpp @@ -1162,7 +1162,7 @@ WRITE8_MEMBER( sp0256_device::ald_w ) /* ---------------------------------------------------------------- */ if (!m_lrq) { - LOG(("sp0256: Droped ALD write\n")); + LOG(("sp0256: Dropped ALD write\n")); return; } diff --git a/src/devices/video/mga2064w.cpp b/src/devices/video/mga2064w.cpp index 741b9246adb..161c9560da9 100644 --- a/src/devices/video/mga2064w.cpp +++ b/src/devices/video/mga2064w.cpp @@ -5,7 +5,7 @@ const device_type MGA2064W = &device_creator; mga2064w_device::mga2064w_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : pci_device(mconfig, MGA2064W, "Matrox Millenium", tag, owner, clock, "mga2064w", __FILE__) + : pci_device(mconfig, MGA2064W, "Matrox Millennium", tag, owner, clock, "mga2064w", __FILE__) { } diff --git a/src/emu/debug/debughlp.cpp b/src/emu/debug/debughlp.cpp index 6f14f4d3e64..3f690d0889b 100644 --- a/src/emu/debug/debughlp.cpp +++ b/src/emu/debug/debughlp.cpp @@ -226,7 +226,7 @@ static const help_item static_help_list[] = " comadd[//]
, -- adds a comment to the disassembled code at given address\n" " comdelete
-- removes a comment from the given address\n" " comsave -- save the current comments to a file\n" - " comlist -- print currently avaliable comments from file\n" + " comlist -- print currently available comments from file\n" " commit[/*]
, -- gives a bulk comadd then comsave command\n" "\n" }, diff --git a/src/emu/tilemap.h b/src/emu/tilemap.h index b15c106b62f..8759ed2ea9e 100644 --- a/src/emu/tilemap.h +++ b/src/emu/tilemap.h @@ -492,7 +492,7 @@ class tilemap_t static const pen_t MAX_PEN_TO_FLAGS = 256; protected: - // tilemap_manager controlls our allocations + // tilemap_manager controls our allocations tilemap_t(); virtual ~tilemap_t(); diff --git a/src/mame/drivers/cps1.cpp b/src/mame/drivers/cps1.cpp index 1601c986561..05ecc1c88f0 100644 --- a/src/mame/drivers/cps1.cpp +++ b/src/mame/drivers/cps1.cpp @@ -1772,7 +1772,7 @@ static INPUT_PORTS_START( nemo ) PORT_START("DSWB") CPS1_DIFFICULTY_1( "SW(B)" ) PORT_DIPNAME( 0x18, 0x18, "Life Bar" ) PORT_DIPLOCATION("SW(B):4,5") - PORT_DIPSETTING( 0x00, "Minimun" ) + PORT_DIPSETTING( 0x00, "Minimum" ) PORT_DIPSETTING( 0x18, DEF_STR( Medium ) ) // PORT_DIPSETTING( 0x10, DEF_STR( Medium ) ) PORT_DIPSETTING( 0x08, "Maximum" ) diff --git a/src/mame/drivers/fireball.cpp b/src/mame/drivers/fireball.cpp index 51c03c08b6c..12fa1e114fa 100644 --- a/src/mame/drivers/fireball.cpp +++ b/src/mame/drivers/fireball.cpp @@ -221,7 +221,7 @@ WRITE8_MEMBER(fireball_state::io_06_w) if (LOG_AY8912){ if(( data&0x30) != (m_p1_data&0x30)){ - logerror("write ay8910 controll bc1= %02X bdir= %02X\n",data&0x10, data&0x20); + logerror("write ay8910 control bc1= %02X bdir= %02X\n",data&0x10, data&0x20); } } @@ -231,7 +231,7 @@ WRITE8_MEMBER(fireball_state::io_06_w) if (LOG_P1){ if(( data&0xc8) != (m_p1_data&0xc8)){ - logerror("Unkonow P1 data changed, old data %02X, new data %02X\n",m_p1_data,data); + logerror("Unknown P1 data changed, old data %02X, new data %02X\n",m_p1_data,data); } } diff --git a/src/mame/drivers/gsword.cpp b/src/mame/drivers/gsword.cpp index 8d05a02050f..621683e6b49 100644 --- a/src/mame/drivers/gsword.cpp +++ b/src/mame/drivers/gsword.cpp @@ -108,11 +108,11 @@ data / ay8910-#0 read 81 ay8910-#1 read port write: -60 ay8910-#0 controll port +60 ay8910-#0 control port 61 ay8910-#0 data port -80 ay8910-#1 controll port +80 ay8910-#1 control port 81 ay8910-#1 data port - ay8910-A : NMI controll ? + ay8910-A : NMI control ? a0 unknown e0 unknown (watch dog?) @@ -274,7 +274,7 @@ WRITE8_MEMBER(gsword_state::nmi_set_w) break; } /* bit1= nmi disable , for ram check */ - logerror("NMI controll %02x\n",data); + logerror("NMI control %02x\n",data); #endif } diff --git a/src/mame/drivers/mpu4sw.hxx b/src/mame/drivers/mpu4sw.hxx index 4f824af0735..0fd2188f7fd 100644 --- a/src/mame/drivers/mpu4sw.hxx +++ b/src/mame/drivers/mpu4sw.hxx @@ -1242,7 +1242,7 @@ ROM_START( m4eaw__bz ) \ M4EAW_EXTRA_ROMS ROM_END -GAME(199?, m4eaw__bz, m4eaw ,mod4oki ,mpu4 , mpu4_state,m4_showstring ,ROT0,"Barcrest","Everyone's A Winner (Barcrest) (MPU4) (unkown rev, bad)",GAME_FLAGS ) +GAME(199?, m4eaw__bz, m4eaw ,mod4oki ,mpu4 , mpu4_state,m4_showstring ,ROT0,"Barcrest","Everyone's A Winner (Barcrest) (MPU4) (unknown rev, bad)",GAME_FLAGS ) #define M4WTA_EXTRA_ROMS \ ROM_REGION( 0x48, "fakechr", 0 ) \ diff --git a/src/mame/drivers/pcipc.cpp b/src/mame/drivers/pcipc.cpp index 85f6597ab7a..591fb072b62 100644 --- a/src/mame/drivers/pcipc.cpp +++ b/src/mame/drivers/pcipc.cpp @@ -10,7 +10,7 @@ -> intel 430hx, aka 82439hx northbridge (pci, no agp) -> intel piix3, aka 82371sb southbridge (pci-isa bridge, ide, ioapic, timer, irq, dma, usb) -> smsc fdc37c93x superio (isa-connected, keyboard, rtc, fdc, rs232, ide) - - A Matrox Millenium PCI video card + - A Matrox Millennium PCI video card We'll see about sound, networking, etc later diff --git a/src/mame/drivers/sbasketb.cpp b/src/mame/drivers/sbasketb.cpp index 8caaaba4c09..e66f0b403af 100644 --- a/src/mame/drivers/sbasketb.cpp +++ b/src/mame/drivers/sbasketb.cpp @@ -98,7 +98,7 @@ static ADDRESS_MAP_START( sbasketb_sound_map, AS_PROGRAM, 8, sbasketb_state ) AM_RANGE(0x6000, 0x6000) AM_DEVREAD("soundlatch", generic_latch_8_device, read) AM_RANGE(0x8000, 0x8000) AM_DEVREAD("trackfld_audio", trackfld_audio_device, hyperspt_sh_timer_r) AM_RANGE(0xa000, 0xa000) AM_DEVWRITE("vlm", vlm5030_device, data_w) /* speech data */ - AM_RANGE(0xc000, 0xdfff) AM_DEVWRITE("trackfld_audio", trackfld_audio_device, hyperspt_sound_w) /* speech and output controll */ + AM_RANGE(0xc000, 0xdfff) AM_DEVWRITE("trackfld_audio", trackfld_audio_device, hyperspt_sound_w) /* speech and output control */ AM_RANGE(0xe000, 0xe000) AM_DEVWRITE("dac", dac_device, write_unsigned8) AM_RANGE(0xe001, 0xe001) AM_WRITE(konami_SN76496_latch_w) /* Loads the snd command into the snd latch */ AM_RANGE(0xe002, 0xe002) AM_WRITE(konami_SN76496_w) /* This address triggers the SN chip to read the data port. */ diff --git a/src/mame/drivers/senjyo.cpp b/src/mame/drivers/senjyo.cpp index 5c5b02aee20..f951a36dcd1 100644 --- a/src/mame/drivers/senjyo.cpp +++ b/src/mame/drivers/senjyo.cpp @@ -65,9 +65,9 @@ f000 ? ( initialize only ) I/O read/write 00 z80pio-A data ( from sound command ) -01 z80pio-A controll ( mode 1 input ) +01 z80pio-A control ( mode 1 input ) 02 z80pio-B data ( no use ) -03 z80pio-B controll ( mode 3 bit i/o ) +03 z80pio-B control ( mode 3 bit i/o ) 08 z80ctc-ch1 ( timer mode cysclk/16, bas clock 15.625KHz ) 09 z80ctc-ch2 ( cascade from ctc-1 , tempo interrupt 88.778Hz ) 0a z80ctc-ch3 ( timer mode , single sound freq. ) diff --git a/src/mame/drivers/zapcomputer.cpp b/src/mame/drivers/zapcomputer.cpp index ad6791e68c0..cde52d03539 100644 --- a/src/mame/drivers/zapcomputer.cpp +++ b/src/mame/drivers/zapcomputer.cpp @@ -19,7 +19,7 @@ For more info, please check chapter 6 "Monitor software" in the book and/or the assembly listings of the ZAP monitor software - avaliable at appendix D. + available at appendix D. Currently missing features in this driver: * hookup RS232 support diff --git a/src/mame/machine/m1comm.cpp b/src/mame/machine/m1comm.cpp index a395c5885cb..6d5f286357d 100644 --- a/src/mame/machine/m1comm.cpp +++ b/src/mame/machine/m1comm.cpp @@ -435,7 +435,7 @@ void m1comm_device::comm_tick() recv = m_line_rx.read(m_buffer, togo); togo -= recv; } - osd_printf_verbose("M1COMM: droped a message...\n"); + osd_printf_verbose("M1COMM: dropped a message...\n"); } if (m_linkalive == 0x00) @@ -533,7 +533,7 @@ void m1comm_device::comm_tick() recv = m_line_rx.read(m_buffer, togo); togo -= recv; } - osd_printf_verbose("M1COMM: droped a message...\n"); + osd_printf_verbose("M1COMM: dropped a message...\n"); } recv = m_line_rx.read(m_buffer, dataSize); } diff --git a/src/mame/machine/m2comm.cpp b/src/mame/machine/m2comm.cpp index 92756c75806..1a11403702a 100644 --- a/src/mame/machine/m2comm.cpp +++ b/src/mame/machine/m2comm.cpp @@ -446,7 +446,7 @@ void m2comm_device::comm_tick() recv = m_line_rx.read(m_buffer, togo); togo -= recv; } - osd_printf_verbose("M2COMM: droped a message...\n"); + osd_printf_verbose("M2COMM: dropped a message...\n"); } if (m_linkalive == 0x00) @@ -527,7 +527,7 @@ void m2comm_device::comm_tick() recv = m_line_rx.read(m_buffer, togo); togo -= recv; } - osd_printf_verbose("M2COMM: droped a message...\n"); + osd_printf_verbose("M2COMM: dropped a message...\n"); } recv = m_line_rx.read(m_buffer, dataSize); } diff --git a/src/mame/machine/s32comm.cpp b/src/mame/machine/s32comm.cpp index 12fba5e9335..ef958624d03 100644 --- a/src/mame/machine/s32comm.cpp +++ b/src/mame/machine/s32comm.cpp @@ -371,7 +371,7 @@ void s32comm_device::comm_tick_14084() recv = m_line_rx.read(m_buffer, togo); togo -= recv; } - osd_printf_verbose("S32COMM: droped a message...\n"); + osd_printf_verbose("S32COMM: dropped a message...\n"); } if (m_linkalive == 0x00) @@ -468,7 +468,7 @@ void s32comm_device::comm_tick_14084() recv = m_line_rx.read(m_buffer, togo); togo -= recv; } - osd_printf_verbose("S32COMM: droped a message...\n"); + osd_printf_verbose("S32COMM: dropped a message...\n"); } recv = m_line_rx.read(m_buffer, dataSize); } @@ -624,7 +624,7 @@ void s32comm_device::comm_tick_15033() recv = m_line_rx.read(m_buffer, togo); togo -= recv; } - osd_printf_verbose("S32COMM: droped a message...\n"); + osd_printf_verbose("S32COMM: dropped a message...\n"); } if (m_linkalive == 0x00) @@ -721,7 +721,7 @@ void s32comm_device::comm_tick_15033() recv = m_line_rx.read(m_buffer, togo); togo -= recv; } - osd_printf_verbose("S32COMM: droped a message...\n"); + osd_printf_verbose("S32COMM: dropped a message...\n"); } recv = m_line_rx.read(m_buffer, dataSize); } @@ -865,7 +865,7 @@ void s32comm_device::comm_tick_15612() recv = m_line_rx.read(m_buffer, togo); togo -= recv; } - osd_printf_verbose("S32COMM: droped a message...\n"); + osd_printf_verbose("S32COMM: dropped a message...\n"); } if (m_linkalive == 0x00) @@ -962,7 +962,7 @@ void s32comm_device::comm_tick_15612() recv = m_line_rx.read(m_buffer, togo); togo -= recv; } - osd_printf_verbose("S32COMM: droped a message...\n"); + osd_printf_verbose("S32COMM: dropped a message...\n"); } recv = m_line_rx.read(m_buffer, dataSize); } diff --git a/src/mame/video/rltennis.cpp b/src/mame/video/rltennis.cpp index 1388940d24e..77b70f965f2 100644 --- a/src/mame/video/rltennis.cpp +++ b/src/mame/video/rltennis.cpp @@ -40,14 +40,14 @@ Blitter registers description (reg/bit names selected arbitrary ) : fedcba98 76543210 -------- -------x BLTFLAG_DST_X_DIR x dst direction (step inc or dec) -------- ------x- BLTFLAG_DST_Y_DIR y dst direction - -------- -----x-- BLTFLAG_DST_LR LR and UD controlls the quarter of framebuffer to use + -------- -----x-- BLTFLAG_DST_LR LR and UD controls the quarter of framebuffer to use -------- ----x--- BLTFLAG_DST_UD / -------- ---?---- unknown -------- --x----- BLTFLAG_DISPLAY_UD display buffer select -------- ??------ unknown -------x -------- BLTFLAG_SRC_X_DIR x src direction ------x- -------- BLTFLAG_SRC_Y_DIR y src direction - -----x-- -------- BLTFLAG_SRC_LR LR and UD controlls the quarter of src buffer to use + -----x-- -------- BLTFLAG_SRC_LR LR and UD controls the quarter of src buffer to use ----x--- -------- BLTFLAG_SRC_UD / xxxx---- -------- src ROM num