mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
Merge pull request #776 from jmallach/typos
Fix typos throughout the codebase
This commit is contained in:
commit
3ed3b7e7fc
@ -45,12 +45,12 @@
|
||||
|
||||
2007-02-22, P.Harvey-Smith
|
||||
|
||||
Began implementing the Dragon Delta Dos controler, this was actually the first
|
||||
Dragon disk controler to market, beating Dragon Data's by a couple of months,
|
||||
Began implementing the Dragon Delta Dos controller, this was actually the first
|
||||
Dragon disk controller to market, beating Dragon Data's by a couple of months,
|
||||
it is based around the WD2791 FDC, which is compatible with the WD1793/WD2797 used
|
||||
by the standard CoCo and Dragon disk controlers except that it used an inverted
|
||||
by the standard CoCo and Dragon disk controllers except that it used an inverted
|
||||
data bus, which is the reason the read/write handlers invert the data. This
|
||||
controler like, the DragonDos WD2797 is mapped at $FF40-$FF43, in the normal
|
||||
controller like, the DragonDos WD2797 is mapped at $FF40-$FF43, in the normal
|
||||
register order.
|
||||
|
||||
The Delta cart also has a register (74LS174 hex flipflop) at $FF44 encoded as
|
||||
|
@ -205,7 +205,7 @@ s1410_device::s1410_device(const machine_config &mconfig, const char *tag, devic
|
||||
#define S1410_CMD_READ_SEC_BUFFER ( 0x10 )
|
||||
#define S1410_CMD_RAM_DIAGS ( 0xe0 )
|
||||
#define S1410_CMD_DRIVE_DIAGS ( 0xe3 )
|
||||
#define S1410_CMD_CONTROLER_DIAGS ( 0xe4 )
|
||||
#define S1410_CMD_CONTROLLER_DIAGS ( 0xe4 )
|
||||
|
||||
#define S1410_STATUS_NOT_READY ( 0x04 )
|
||||
|
||||
@ -302,7 +302,7 @@ void s1410_device::ExecCommand()
|
||||
case S1410_CMD_CHECK_TRACK_FORMAT:
|
||||
case S1410_CMD_RAM_DIAGS:
|
||||
case S1410_CMD_DRIVE_DIAGS:
|
||||
case S1410_CMD_CONTROLER_DIAGS:
|
||||
case S1410_CMD_CONTROLLER_DIAGS:
|
||||
m_phase = SCSI_PHASE_STATUS;
|
||||
m_status_code = SCSI_STATUS_CODE_GOOD;
|
||||
m_transfer_length = 0;
|
||||
|
@ -3208,8 +3208,8 @@ UINT8 ym2608_read(void *chip,int a)
|
||||
{
|
||||
if(addr == 0x0f)
|
||||
{
|
||||
F2608->device->logerror("YM2608 A/D convertion is accessed but not implemented !\n");
|
||||
ret = 0x80; /* 2's complement PCM data - result from A/D convertion */
|
||||
F2608->device->logerror("YM2608 A/D conversion is accessed but not implemented !\n");
|
||||
ret = 0x80; /* 2's complement PCM data - result from A/D conversion */
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
@ -2101,8 +2101,8 @@ static unsigned char OPLRead(FM_OPL *OPL,int a)
|
||||
case 0x1a: /* PCM-DATA */
|
||||
if(OPL->type&OPL_TYPE_ADPCM)
|
||||
{
|
||||
OPL->device->logerror("Y8950 A/D convertion is accessed but not implemented !\n");
|
||||
return 0x80; /* 2's complement PCM data - result from A/D convertion */
|
||||
OPL->device->logerror("Y8950 A/D conversion is accessed but not implemented !\n");
|
||||
return 0x80; /* 2's complement PCM data - result from A/D conversion */
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
@ -728,7 +728,7 @@ void address_map::map_validity_check(validity_checker &valid, const device_t &de
|
||||
case 64: devtag = entry.m_rproto64.device_name(); break;
|
||||
}
|
||||
if (entry.m_devbase.subdevice(devtag) == nullptr)
|
||||
osd_printf_error("%s space memory map entry reads from nonexistant device '%s'\n", spaceconfig.m_name,
|
||||
osd_printf_error("%s space memory map entry reads from nonexistent device '%s'\n", spaceconfig.m_name,
|
||||
devtag != nullptr ? devtag : "<unspecified>");
|
||||
}
|
||||
if (entry.m_write.m_type == AMH_DEVICE_DELEGATE)
|
||||
@ -743,7 +743,7 @@ void address_map::map_validity_check(validity_checker &valid, const device_t &de
|
||||
case 64: devtag = entry.m_wproto64.device_name(); break;
|
||||
}
|
||||
if (entry.m_devbase.subdevice(devtag) == nullptr)
|
||||
osd_printf_error("%s space memory map entry writes to nonexistant device '%s'\n", spaceconfig.m_name,
|
||||
osd_printf_error("%s space memory map entry writes to nonexistent device '%s'\n", spaceconfig.m_name,
|
||||
devtag != nullptr ? devtag : "<unspecified>");
|
||||
}
|
||||
if (entry.m_setoffsethd.m_type == AMH_DEVICE_DELEGATE)
|
||||
@ -751,14 +751,14 @@ void address_map::map_validity_check(validity_checker &valid, const device_t &de
|
||||
// extract the device tag from the proto-delegate
|
||||
const char *devtag = entry.m_soproto.device_name();
|
||||
if (entry.m_devbase.subdevice(devtag) == nullptr)
|
||||
osd_printf_error("%s space memory map entry references nonexistant device '%s'\n", spaceconfig.m_name,
|
||||
osd_printf_error("%s space memory map entry references nonexistent device '%s'\n", spaceconfig.m_name,
|
||||
devtag != nullptr ? devtag : "<unspecified>");
|
||||
}
|
||||
|
||||
// make sure ports exist
|
||||
// if ((entry.m_read.m_type == AMH_PORT && entry.m_read.m_tag != NULL && portlist.find(entry.m_read.m_tag) == NULL) ||
|
||||
// (entry.m_write.m_type == AMH_PORT && entry.m_write.m_tag != NULL && portlist.find(entry.m_write.m_tag) == NULL))
|
||||
// osd_printf_error("%s space memory map entry references nonexistant port tag '%s'\n", spaceconfig.m_name, entry.m_read.m_tag);
|
||||
// osd_printf_error("%s space memory map entry references nonexistent port tag '%s'\n", spaceconfig.m_name, entry.m_read.m_tag);
|
||||
|
||||
// validate bank and share tags
|
||||
if (entry.m_read.m_type == AMH_BANK)
|
||||
|
@ -1692,7 +1692,7 @@ static void execute_hotspot(running_machine &machine, int ref, int params, const
|
||||
|
||||
/* attempt to install */
|
||||
device->debug()->hotspot_track(count, threshhold);
|
||||
debug_console_printf(machine, "Now tracking hotspots on CPU '%s' using %d slots with a threshhold of %d\n", device->tag(), (int)count, (int)threshhold);
|
||||
debug_console_printf(machine, "Now tracking hotspots on CPU '%s' using %d slots with a threshold of %d\n", device->tag(), (int)count, (int)threshhold);
|
||||
}
|
||||
|
||||
|
||||
|
@ -3083,7 +3083,7 @@ void device_debug::hotspot_check(address_space &space, offs_t address)
|
||||
// if we didn't find any, make a new entry
|
||||
if (hotindex == m_hotspots.size())
|
||||
{
|
||||
// if the bottom of the list is over the threshhold, print it
|
||||
// if the bottom of the list is over the threshold, print it
|
||||
hotspot_entry &spot = m_hotspots[m_hotspots.size() - 1];
|
||||
if (spot.m_count > m_hotspot_threshhold)
|
||||
debug_console_printf(space.machine(), "Hotspot @ %s %08X (PC=%08X) hit %d times (fell off bottom)\n", space.name(), spot.m_access, spot.m_pc, spot.m_count);
|
||||
|
@ -136,7 +136,7 @@ void datfile_manager::init_history()
|
||||
int swcount = 0;
|
||||
int count = index_datafile(m_histidx, swcount);
|
||||
osd_printf_verbose("History.dat games found = %i\n", count);
|
||||
osd_printf_verbose("History.dat softwares found = %i\n", swcount);
|
||||
osd_printf_verbose("History.dat software found = %i\n", swcount);
|
||||
osd_printf_verbose("Rev = %s\n", m_history_rev.c_str());
|
||||
}
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
ui/selsoft.cpp
|
||||
|
||||
UI softwares menu.
|
||||
UI software menu.
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
@ -519,7 +519,7 @@ void ui_menu_select_software::populate()
|
||||
}
|
||||
|
||||
//-------------------------------------------------
|
||||
// build a list of softwares
|
||||
// build a list of software
|
||||
//-------------------------------------------------
|
||||
|
||||
void ui_menu_select_software::build_software_list()
|
||||
@ -680,7 +680,7 @@ void ui_menu_select_software::custom_render(void *selectedref, float top, float
|
||||
|
||||
// determine the text for the header
|
||||
int vis_item = (m_search[0] != 0) ? visible_items : (m_has_empty_start ? visible_items - 1 : visible_items);
|
||||
tempbuf[0] = string_format(_("%1$s %2$s ( %3$d / %4$d softwares )"), emulator_info::get_appname(), bare_build_version, vis_item, m_swinfo.size() - 1);
|
||||
tempbuf[0] = string_format(_("%1$s %2$s ( %3$d / %4$d software )"), emulator_info::get_appname(), bare_build_version, vis_item, m_swinfo.size() - 1);
|
||||
tempbuf[1] = string_format(_("Driver: \"%1$s\" software list "), m_driver->description);
|
||||
|
||||
if (sw_filters::actual == UI_SW_REGION && m_filter.region.ui.size() != 0)
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
ui/selsoft.h
|
||||
|
||||
UI softwares menu.
|
||||
UI software menu.
|
||||
|
||||
***************************************************************************/
|
||||
#pragma once
|
||||
|
@ -563,7 +563,7 @@ float ui_manager::get_line_height()
|
||||
// if our font is small-ish, do integral scaling
|
||||
if (raw_font_pixel_height < 24)
|
||||
{
|
||||
// do we want to scale smaller? only do so if we exceed the threshhold
|
||||
// do we want to scale smaller? only do so if we exceed the threshold
|
||||
if (scale_factor <= 1.0f)
|
||||
{
|
||||
if (one_to_one_line_height < UI_MAX_FONT_HEIGHT || raw_font_pixel_height < 12)
|
||||
|
@ -510,7 +510,7 @@ void validity_checker::validate_driver()
|
||||
// if we have at least 100 drivers, validate the clone
|
||||
// (100 is arbitrary, but tries to avoid tiny.mak dependencies)
|
||||
if (driver_list::total() > 100 && clone_of == -1 && is_clone)
|
||||
osd_printf_error("Driver is a clone of nonexistant driver %s\n", m_current_driver->parent);
|
||||
osd_printf_error("Driver is a clone of nonexistent driver %s\n", m_current_driver->parent);
|
||||
|
||||
// look for recursive cloning
|
||||
if (clone_of != -1 && &m_drivlist.driver(clone_of) == m_current_driver)
|
||||
@ -541,7 +541,7 @@ void validity_checker::validate_driver()
|
||||
|
||||
// check for this driver being compatible with a non-existant driver
|
||||
if (compatible_with != nullptr && m_drivlist.find(m_current_driver->compatible_with) == -1)
|
||||
osd_printf_error("Driver is listed as compatible with nonexistant driver %s\n", m_current_driver->compatible_with);
|
||||
osd_printf_error("Driver is listed as compatible with nonexistent driver %s\n", m_current_driver->compatible_with);
|
||||
|
||||
// check for clone_of and compatible_with being specified at the same time
|
||||
if (m_drivlist.clone(*m_current_driver) != -1 && compatible_with != nullptr)
|
||||
|
@ -15,7 +15,7 @@
|
||||
#include "dfi_dsk.h"
|
||||
#include <zlib.h>
|
||||
#define NUMBER_OF_MULTIREADS 3
|
||||
// threshholds for brickwall windowing
|
||||
// thresholds for brickwall windowing
|
||||
//define DFI_MIN_CLOCKS 65
|
||||
// number_please apple2 wants 40 min
|
||||
#define DFI_MIN_CLOCKS 60
|
||||
|
@ -50,7 +50,7 @@ enum floperr_t
|
||||
FLOPPY_ERROR_INTERNAL, /* fatal internal error */
|
||||
FLOPPY_ERROR_UNSUPPORTED, /* this operation is unsupported */
|
||||
FLOPPY_ERROR_OUTOFMEMORY, /* ran out of memory */
|
||||
FLOPPY_ERROR_SEEKERROR, /* attempted to seek to nonexistant location */
|
||||
FLOPPY_ERROR_SEEKERROR, /* attempted to seek to nonexistent location */
|
||||
FLOPPY_ERROR_INVALIDIMAGE, /* this image in invalid */
|
||||
FLOPPY_ERROR_READONLY, /* attempt to write to read-only image */
|
||||
FLOPPY_ERROR_NOSPACE,
|
||||
|
@ -1896,9 +1896,9 @@ WRITE16_MEMBER(dcs_audio_device:: adsp_control_w )
|
||||
|
||||
case S1_CONTROL_REG:
|
||||
if (((data >> 4) & 3) == 2)
|
||||
logerror("DCS: Oh no!, the data is compresed with u-law encoding\n");
|
||||
logerror("DCS: Oh no!, the data is compressed with u-law encoding\n");
|
||||
if (((data >> 4) & 3) == 3)
|
||||
logerror("DCS: Oh no!, the data is compresed with A-law encoding\n");
|
||||
logerror("DCS: Oh no!, the data is compressed with A-law encoding\n");
|
||||
break;
|
||||
|
||||
case TIMER_SCALE_REG:
|
||||
|
@ -1032,7 +1032,7 @@ static INPUT_PORTS_START( paddlema )
|
||||
PORT_DIPSETTING( 0x08, DEF_STR( 2C_1C ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( 1C_1C ) )
|
||||
PORT_DIPNAME( 0x30, 0x30, DEF_STR( Game_Time ) ) PORT_DIPLOCATION("SW1:4,3") /* See notes for Game Time / Match Type combos */
|
||||
PORT_DIPSETTING( 0x00, "Defualt Time" )
|
||||
PORT_DIPSETTING( 0x00, "Default Time" )
|
||||
PORT_DIPSETTING( 0x20, "+10 Seconds" )
|
||||
PORT_DIPSETTING( 0x10, "+20 Seconds" )
|
||||
PORT_DIPSETTING( 0x30, "+30 Seconds" )
|
||||
|
@ -19,7 +19,7 @@ if the LOAD key is accidentally pressed quickly while using the system, which wo
|
||||
erase everything in memory and all data up to that point and re-load the software from
|
||||
scratch. When loading is activated application software is read from floppies.
|
||||
|
||||
The softwares are not point and click auto-generation type conversational CAD/CAM
|
||||
The software are not point and click auto-generation type conversational CAD/CAM
|
||||
applications. The earlier 'non-Symbolic' software requires knowledge of programming in APT
|
||||
and other languages of the era. The 'Symbolic' software has menus and asks questions and
|
||||
the blanks must be filled in correctly. The graphics are mostly made of lines but are
|
||||
|
@ -582,9 +582,9 @@ WRITE16_MEMBER(gaelco3d_state::adsp_control_w)
|
||||
|
||||
case S1_CONTROL_REG:
|
||||
if (((data >> 4) & 3) == 2)
|
||||
logerror("Oh no!, the data is compresed with u-law encoding\n");
|
||||
logerror("Oh no!, the data is compressed with u-law encoding\n");
|
||||
if (((data >> 4) & 3) == 3)
|
||||
logerror("Oh no!, the data is compresed with A-law encoding\n");
|
||||
logerror("Oh no!, the data is compressed with A-law encoding\n");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -353,7 +353,7 @@ WRITE8_MEMBER(gei_state::geimulti_bank_w)
|
||||
case 0x5c3f: bank = 12; break;
|
||||
case 0x5c7e: bank = 13; break;
|
||||
case 0x5aff: case 0x5cff: break;
|
||||
default: logerror( "Uknown banking write, offset = %04x, data = %02x\n", offset, data);
|
||||
default: logerror( "Unknown banking write, offset = %04x, data = %02x\n", offset, data);
|
||||
}
|
||||
|
||||
if (bank != -1)
|
||||
@ -1325,7 +1325,7 @@ ROM_START( gtsersb ) /* alt or older version questions */
|
||||
ROM_LOAD( "sports_3", 0x14000, 0x4000, CRC(5986996c) SHA1(56432c15a3b0204ed527c18e24716f17bb52dc4e) ) /* Dated 3/9 */
|
||||
ROM_LOAD( "television", 0x18000, 0x4000, CRC(413f34c8) SHA1(318f6b464449bf3f0c43c4210a667190c774eb67) ) /* Dated 4/9 */
|
||||
ROM_LOAD( "sex_triv", 0x1c000, 0x4000, CRC(cd0ce4e2) SHA1(2046ee3da94f00bf4a8b3fc62b1190d58e83cc89) ) /* Dated 7/9 - likely an alt series 7 question set */
|
||||
ROM_LOAD( "facts_of_life", 0x20000, 0x4000, CRC(1668c7bf) SHA1(6bf43de26f8a626560579ab75fd0890fe00f99dd) ) /* Uknown series question set */
|
||||
ROM_LOAD( "facts_of_life", 0x20000, 0x4000, CRC(1668c7bf) SHA1(6bf43de26f8a626560579ab75fd0890fe00f99dd) ) /* Unknown series question set */
|
||||
ROM_END
|
||||
|
||||
ROM_START( sextriv1 )
|
||||
@ -1785,7 +1785,7 @@ ROM_START( sexappl ) /* TRIV3D PCB, stickered SEX APPL 6.02 5/92 */
|
||||
ROM_LOAD( "adult_sex", 0x30000, 0x8000, CRC(05798340) SHA1(8db308bb725112327027a725b2c69299e6da1dad) )
|
||||
|
||||
ROM_REGION( 0x0800, "nvram", 0 )
|
||||
ROM_LOAD( "sexappl.nvram", 0x0000, 0x0800, CRC(be65737c) SHA1(5b8a603a9ddecdad4aaef0b9e8ef373885b236c0) ) /* Defualts but with card dispenser OFF! */
|
||||
ROM_LOAD( "sexappl.nvram", 0x0000, 0x0800, CRC(be65737c) SHA1(5b8a603a9ddecdad4aaef0b9e8ef373885b236c0) ) /* Defaults but with card dispenser OFF! */
|
||||
ROM_END
|
||||
|
||||
/*
|
||||
|
@ -106,7 +106,7 @@ Title Screen Language | Japanese | |off| |*#
|
||||
| Test | |on |
|
||||
------------------------------------------------------------------
|
||||
|
||||
* Denotes Factory Defualts
|
||||
* Denotes Factory Defaults
|
||||
# English title page doesn't display the Japanese translation of the word "Macross"
|
||||
|
||||
|
||||
|
@ -695,7 +695,7 @@ ROM_END
|
||||
|
||||
ROM_START( marioo )
|
||||
ROM_REGION( 0x10000, "maincpu", 0 )
|
||||
ROM_LOAD( "tma1-c-7f_.7f", 0x0000, 0x2000, CRC(c0c6e014) SHA1(36a04f9ca1c2a583477cb8a6f2ef94e044e08296) ) /* Uknown revision */
|
||||
ROM_LOAD( "tma1-c-7f_.7f", 0x0000, 0x2000, CRC(c0c6e014) SHA1(36a04f9ca1c2a583477cb8a6f2ef94e044e08296) ) /* Unknown revision */
|
||||
ROM_LOAD( "tma1-c-7f_.7e", 0x2000, 0x2000, CRC(116b3856) SHA1(e372f846d0e5a2b9b47ebd0330293fcc8a12363f) )
|
||||
ROM_LOAD( "tma1-c-7f_.7d", 0x4000, 0x2000, CRC(dcceb6c1) SHA1(b19804e69ce2c98cf276c6055c3a250316b96b45) )
|
||||
ROM_LOAD( "tma1-c-7f_.7c", 0xf000, 0x1000, CRC(4a63d96b) SHA1(b09060b2c84ab77cc540a27b8f932cb60ec8d442) )
|
||||
|
@ -551,7 +551,7 @@ static INPUT_PORTS_START( spyhunt2 )
|
||||
PORT_DIPNAME( 0x0004, 0x0004, DEF_STR( Free_Play ) ) PORT_DIPLOCATION("SW1:3")
|
||||
PORT_DIPSETTING( 0x0004, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x0000, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x0018, 0x0008, "Point Threshholds" ) PORT_DIPLOCATION("SW1:4,5")
|
||||
PORT_DIPNAME( 0x0018, 0x0008, "Point Thresholds" ) PORT_DIPLOCATION("SW1:4,5")
|
||||
PORT_DIPSETTING( 0x0008, DEF_STR( Easy ) )
|
||||
PORT_DIPSETTING( 0x0018, DEF_STR( Medium ) )
|
||||
PORT_DIPSETTING( 0x0010, DEF_STR( Hard ) )
|
||||
|
@ -373,7 +373,7 @@ WRITE8_MEMBER(merit_state::casino5_bank_w)
|
||||
}
|
||||
else
|
||||
{
|
||||
logerror( "Uknown banking write %02x\n", data );
|
||||
logerror( "Unknown banking write %02x\n", data );
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -206,7 +206,7 @@ On boot: 50 = 98, 51 = 06, 52 = 7f
|
||||
0061 - unknown
|
||||
0xFE written in irq 0xFB handler
|
||||
|
||||
0070 - uknown 0x01 is written when going to terminal mode (enable rs232 receive?)
|
||||
0070 - unknown 0x01 is written when going to terminal mode (enable rs232 receive?)
|
||||
|
||||
0090 - Interrupt source clear
|
||||
b7 - 1 = clear interrupt source for irq vector 0xf8
|
||||
|
@ -528,7 +528,7 @@ void namcos10_state::i2c_update()
|
||||
i2c_bit--;
|
||||
if(i2c_bit < 0) {
|
||||
i2cp_mode = I2CP_RECIEVE_ACK_1;
|
||||
logerror("i2c recieved byte %02x\n", i2c_byte);
|
||||
logerror("i2c received byte %02x\n", i2c_byte);
|
||||
i2c_dev_data = 0;
|
||||
data = 0;
|
||||
}
|
||||
|
@ -745,7 +745,7 @@ static INPUT_PORTS_START( pc1512 )
|
||||
PORT_DIPSETTING( 0x00, "32 KB" )
|
||||
PORT_DIPNAME( 0x60, 0x60, "Character Set")
|
||||
PORT_DIPSETTING( 0x60, "Default (Codepage 437)" )
|
||||
PORT_DIPSETTING( 0x40, "Portugese (Codepage 865)" )
|
||||
PORT_DIPSETTING( 0x40, "Portuguese (Codepage 865)" )
|
||||
PORT_DIPSETTING( 0x20, "Norwegian (Codepage 860)" )
|
||||
PORT_DIPSETTING( 0x00, "Greek")
|
||||
PORT_DIPNAME( 0x80, 0x80, "Floppy Ready Line")
|
||||
|
@ -5375,7 +5375,7 @@ PayTable Ks+ 2P 3K STR FL FH 4K SF RF 5K RF (Bonus)
|
||||
ROM_LOAD( "cap740.u50", 0x0000, 0x0100, CRC(6fe619c4) SHA1(49e43dafd010ce0fe9b2a63b96a4ddedcb933c6d) ) /* BPROM type DM74LS471 (compatible with N82S135N) verified */
|
||||
ROM_END
|
||||
|
||||
ROM_START( pepp0467 ) /* Normal board : Uknown Bonus Poker (PP0467) */
|
||||
ROM_START( pepp0467 ) /* Normal board : Unknown Bonus Poker (PP0467) */
|
||||
/*
|
||||
PayTable Js+ 2P 3K STR FL FH 4K ?? SF RF (Bonus)
|
||||
-----------------------------------------------------------
|
||||
|
@ -724,7 +724,7 @@ static INPUT_PORTS_START( polepos2 )
|
||||
PORT_DIPSETTING( 0x10, DEF_STR( 3C_2C ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( 4C_3C ) )
|
||||
PORT_DIPSETTING( 0x18, DEF_STR( 1C_1C ) )
|
||||
PORT_DIPNAME( 0x04, 0x00, "Speed Unit" ) PORT_DIPLOCATION("SW1:6") /* Set defualt to MPH for "English" regions */
|
||||
PORT_DIPNAME( 0x04, 0x00, "Speed Unit" ) PORT_DIPLOCATION("SW1:6") /* Set default to MPH for "English" regions */
|
||||
PORT_DIPSETTING( 0x00, "mph" )
|
||||
PORT_DIPSETTING( 0x04, "km/h" )
|
||||
PORT_DIPNAME( 0x02, 0x02, DEF_STR( Demo_Sounds ) ) PORT_DIPLOCATION("SW1:7")
|
||||
@ -763,7 +763,7 @@ static INPUT_PORTS_START( polepos2j )
|
||||
PORT_INCLUDE( polepos2 )
|
||||
|
||||
PORT_MODIFY("DSWA")
|
||||
PORT_DIPNAME( 0x04, 0x04, "Speed Unit" ) PORT_DIPLOCATION("SW1:6") /* Set defualt to km/h for Japan */
|
||||
PORT_DIPNAME( 0x04, 0x04, "Speed Unit" ) PORT_DIPLOCATION("SW1:6") /* Set default to km/h for Japan */
|
||||
PORT_DIPSETTING( 0x00, "mph" )
|
||||
PORT_DIPSETTING( 0x04, "km/h" )
|
||||
INPUT_PORTS_END
|
||||
|
@ -358,7 +358,7 @@ ROM_END
|
||||
|
||||
ROM_START( primob64 )
|
||||
ROM_REGION( 0x14000, "maincpu", ROMREGION_ERASEFF )
|
||||
ROM_SYSTEM_BIOS(0, "standart", "Standart")
|
||||
ROM_SYSTEM_BIOS(0, "standart", "Standard")
|
||||
ROMX_LOAD( "b64.rom", 0x10000, 0x4000, CRC(cea28188) SHA1(a77e42e97402e601b78ab3751eac1e85d0bbb4a0), ROM_BIOS(1) )
|
||||
ROM_SYSTEM_BIOS(1, "cdos", "CDOS")
|
||||
ROMX_LOAD( "b64cdos.rom", 0x10000, 0x4000, CRC(73305e4d) SHA1(c090c3430cdf19eed8363377b981e1c21a4ed169), ROM_BIOS(2) )
|
||||
|
@ -237,7 +237,7 @@ WRITE32_MEMBER( r9751_state::r9751_mmio_5ff_w )
|
||||
m_terminal->write(space,0,m_mem->read_dword(smioc_out_addr));
|
||||
break;
|
||||
default:
|
||||
if(TRACE_SMIOC) logerror("Uknown serial DMA command: %X\n", data);
|
||||
if(TRACE_SMIOC) logerror("Unknown serial DMA command: %X\n", data);
|
||||
}
|
||||
break;
|
||||
case 0xC098: /* Serial DMA output address */
|
||||
|
@ -127,7 +127,7 @@ static MACHINE_CONFIG_START( tim011,tim011_state )
|
||||
MCFG_CPU_IO_MAP(tim011_io)
|
||||
MCFG_CPU_VBLANK_INT_DRIVER("screen", tim011_state, irq0_line_hold)
|
||||
|
||||
// MCFG_CPU_ADD("keyboard",CDP1802, XTAL_1_75MHz) // CDP1802, uknown clock
|
||||
// MCFG_CPU_ADD("keyboard",CDP1802, XTAL_1_75MHz) // CDP1802, unknown clock
|
||||
|
||||
// FDC9266 location U43 XTAL_8MHz
|
||||
MCFG_UPD765A_ADD(FDC9266_TAG, true, true)
|
||||
|
@ -497,7 +497,7 @@ void tmmjprd_state::do_blit()
|
||||
break;
|
||||
|
||||
default: /* unknown / illegal */
|
||||
if(BLITLOG) osd_printf_debug("uknown blit command %02x\n",blt_commnd);
|
||||
if(BLITLOG) osd_printf_debug("unknown blit command %02x\n",blt_commnd);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -730,7 +730,7 @@ static INPUT_PORTS_START( tubep )
|
||||
PORT_DIPNAME( 0x10, 0x00, DEF_STR( Cabinet ) ) PORT_DIPLOCATION("SW2:2")
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( Upright ) )
|
||||
PORT_DIPSETTING( 0x10, DEF_STR( Cocktail ) )
|
||||
PORT_DIPNAME( 0x20, 0x20, "Serivce mode" ) PORT_DIPLOCATION("SW2:1")
|
||||
PORT_DIPNAME( 0x20, 0x20, "Service mode" ) PORT_DIPLOCATION("SW2:1")
|
||||
PORT_DIPSETTING( 0x20, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_UNUSED )
|
||||
|
@ -190,7 +190,7 @@ public:
|
||||
UINT8 reg400;
|
||||
} m_nimbus_drives;
|
||||
|
||||
/* 8031 Peripheral controler */
|
||||
/* 8031 Peripheral controller */
|
||||
struct
|
||||
{
|
||||
UINT8 ipc_in;
|
||||
|
@ -211,7 +211,7 @@ WRITE8_MEMBER( dragon_alpha_state::ff20_write )
|
||||
PIA2 PA2 Rom switch, 0=basic rom, 1=boot rom.
|
||||
PIA2 PA3-PA7 Unknown/unused ?
|
||||
PIA2 PB0-PB7 connected to D0..7 of the AY8912.
|
||||
CB1 DRQ from WD2797 disk controler.
|
||||
CB1 DRQ from WD2797 disk controller.
|
||||
***************************************************************************/
|
||||
|
||||
//-------------------------------------------------
|
||||
|
@ -1247,11 +1247,11 @@ WRITE_LINE_MEMBER( rmnimbus_state::write_scsi_req )
|
||||
check_scsi_irq();
|
||||
}
|
||||
|
||||
/* 8031/8051 Peripheral controler 80186 side */
|
||||
/* 8031/8051 Peripheral controller 80186 side */
|
||||
|
||||
void rmnimbus_state::pc8031_reset()
|
||||
{
|
||||
logerror("peripheral controler reset\n");
|
||||
logerror("peripheral controller reset\n");
|
||||
|
||||
memset(&m_ipc_interface,0,sizeof(m_ipc_interface));
|
||||
}
|
||||
@ -1315,7 +1315,7 @@ WRITE8_MEMBER(rmnimbus_state::nimbus_pc8031_w)
|
||||
|
||||
}
|
||||
|
||||
/* 8031/8051 Peripheral controler 8031/8051 side */
|
||||
/* 8031/8051 Peripheral controller 8031/8051 side */
|
||||
|
||||
READ8_MEMBER(rmnimbus_state::nimbus_pc8031_iou_r)
|
||||
{
|
||||
|
@ -907,7 +907,7 @@ MACHINE_START_MEMBER(sms_state,sms)
|
||||
// a F0 pattern on power up; F0 = RET P.
|
||||
// This initialization breaks some Game Gear games though (e.g.
|
||||
// tempojr), suggesting that not all systems had the same initialization.
|
||||
// This also breaks some homebrew softwares (e.g. Nine Pixels).
|
||||
// This also breaks some homebrew software (e.g. Nine Pixels).
|
||||
// For the moment we apply this to systems that have the Japanese SMS
|
||||
// cartridge slot.
|
||||
if (m_has_jpn_sms_cart_slot)
|
||||
|
Loading…
Reference in New Issue
Block a user