Previous 199869 Revisions Next

r32977 Sunday 26th October, 2014 at 16:43:37 UTC by Sergey Svishchev
kb_ec1841: use correct clock frequency
[src/emu/bus/pc_kbd]ec1841.c
[src/emu/drivers]xtal.h
[src/emu/video]upd7220.c
[src/mame/drivers]peplus.c
[src/mess/drivers]pc9801.c

trunk/src/emu/bus/pc_kbd/ec1841.c
r241488r241489
8080//-------------------------------------------------
8181
8282static MACHINE_CONFIG_FRAGMENT( ec_1841_keyboard )
83   // XXX check
84   MCFG_CPU_ADD(I8048_TAG, I8048, MCS48_LC_CLOCK(IND_U(47), CAP_P(20.7)))
83   MCFG_CPU_ADD(I8048_TAG, I8048, XTAL_5_46MHz)
8584   MCFG_CPU_IO_MAP(ec_1841_keyboard_io)
8685MACHINE_CONFIG_END
8786
trunk/src/emu/drivers/xtal.h
r241488r241489
7171   XTAL_4_9152MHz      = 4915200,
7272   XTAL_5MHz           = 5000000,      /* Mutant Night */
7373   XTAL_5_0688MHz      = 5068800,      /* Xerox 820, DEC VK100 */
74   XTAL_5_46MHz        = 5460000,      /* ec1840 and ec1841 keyboard */
7475   XTAL_5_626MHz       = 5626000,      /* RCA CDP1869 PAL dot clock */
7576   XTAL_5_67MHz        = 5670000,      /* RCA CDP1869 NTSC dot clock */
7677   XTAL_5_7143MHz      = 5714300,      /* Cidelsa Destroyer */
trunk/src/emu/video/upd7220.c
r241488r241489
15921592            addr = ((sad << 1) & 0x3ffff) + (y * (m_pitch << (im ? 0 : 1)));
15931593
15941594            if (!m_display_cb.isnull())
1595               draw_graphics_line(bitmap, addr, y + (bsy / m_lr), wd);
1595               draw_graphics_line(bitmap, addr, y + (im ? bsy : (bsy >> 1)), wd);
15961596         }
15971597      }
15981598      else
trunk/src/mame/drivers/peplus.c
r241488r241489
141141  PPnnnn Poker games. Several different types of poker require specific CG graphics + CAP color prom
142142  IPnnnn International Poker games. Several different types of poker require specific CG graphics + CAP color prom
143143  PSnnnn Slot games. Each slot game requires specific CG graphics + CAP color prom
144  MGnnnn Multi Game programs for the Player's Choice machines that had optional touchscreens and or printers
145144
146145Super PE+
147146 Program Types
r241488r241489
89538952GAMEL(1987, peip0120,  peip0031, peplus,  peplus_poker, peplus_state, nonplus,  ROT0,  "IGT - International Game Technology", "Player's Edge Plus (IP0120) Standard Draw Poker - French",  0, layout_pe_poker )
89548953
89558954/* Normal board : Blackjack */
8956GAMEL(1994, pebe0014, 0,      peplus,  peplus_bjack, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (BE0014) Blackjack",                        0, layout_pe_bjack )
8955GAMEL(1994, pebe0014, 0,      peplus,  peplus_bjack, peplus_state, peplus,   ROT0,  "IGT - International Game Technology", "Player's Edge Plus (BE0014) Blackjack",                        0,   layout_pe_bjack )
89578956
89588957/* Normal board : Keno */
89598958GAMEL(1994, peke1012,  0,        peplus, peplus_keno, peplus_state, peplus, ROT0,  "IGT - International Game Technology", "Player's Edge Plus (KE1012) Keno",                              0, layout_pe_keno )
trunk/src/mess/drivers/pc9801.c
r241488r241489
19081908   pcg_offset|= offset & 0x1e;
19091909   pcg_offset|= m_font_lr;
19101910
1911   if(!(m_font_addr & 0xff))
1912   {
1913      int char_size = m_video_ff[FONTSEL_REG];
1914      return m_char_rom[(m_font_addr >> 8) * (8 << char_size) + (char_size * 0x800) + ((offset >> 1) & 0xf)];
1915   }
1916
19171911   /* TODO: investigate on this difference */
19181912   if((m_font_addr & 0xff00) == 0x5600 || (m_font_addr & 0xff00) == 0x5700)
19191913      return m_kanji_rom[pcg_offset];


Previous 199869 Revisions Next


© 1997-2024 The MAME Team