Previous 199869 Revisions Next

r19504 Thursday 13th December, 2012 at 00:34:54 UTC by Angelo Salese
Attempt fixing AAKART in blind faith ...
[src/mame/drivers]aristmk5.c
[src/mess/drivers]pc9801.c
[src/mess/video]upd7220.c

trunk/src/mame/drivers/aristmk5.c
r19503r19504
420420};
421421#endif
422422
423/* TODO: this isn't supposed to access a keyboard ... */
424static AAKART_INTERFACE( kart_interface )
425{
426   DEVCB_NULL,
427   DEVCB_NULL
428};
429
423430static MACHINE_CONFIG_START( aristmk5, aristmk5_state )
424431   MCFG_CPU_ADD("maincpu", ARM, 12000000)
425432   MCFG_CPU_PROGRAM_MAP(aristmk5_drame_map)
426433    MCFG_WATCHDOG_TIME_INIT(attotime::from_seconds(2))   /* 1.6 - 2 seconds */
427434
428435//  MCFG_I2CMEM_ADD("i2cmem",i2cmem_interface)
429//   MCFG_AAKART_ADD("kart", 12000000) // TODO: frequency
436   MCFG_AAKART_ADD("kart", 12000000/128, kart_interface) // TODO: frequency
430437
431438   MCFG_SCREEN_ADD("screen", RASTER)
432439   MCFG_SCREEN_REFRESH_RATE(60)
trunk/src/mess/video/upd7220.c
r19503r19504
413413   visarea.max_y = m_al - 1;//vert_pix_total - m_vfp - 1;
414414
415415
416   if (1)
416   if (LOG)
417417   {
418418      printf("uPD7220 '%s' Screen: %u x %u @ %f Hz\n", tag(), horiz_pix_total, vert_pix_total, 1 / ATTOSECONDS_TO_DOUBLE(refresh));
419419      printf("Visible Area: (%u, %u) - (%u, %u)\n", visarea.min_x, visarea.min_y, visarea.max_x, visarea.max_y);
trunk/src/mess/drivers/pc9801.c
r19503r19504
4040   - AD&D Champions of Krynn
4141   - AI Shougi (asserts upon loading)
4242   - Aoki Ookami no Shiroki Mejika - Gengis Khan
43   - Arcshu
4344   - Bokosuka Wars
4445   - Dokkin Minako Sensei (2dd image)
4546   - Jangou 2: floppy fails to load after the title screen;
r19503r19504
5859   - Anniversary - Memories of Summer: thinks that a button is pressed;
5960   - Another Genesis: fails loading;
6061   - Apple Club 1: how to pass an hand?
61   (Applesauce Pirates)
62   - Arctic: keyboard doesn't work?
6263
6364   - Dragon Buster: slight issue with window masking;
6465   - Far Side Moon: doesn't detect sound board (tied to 0x00ec ports)

Previous 199869 Revisions Next


© 1997-2024 The MAME Team