Previous 199869 Revisions Next

r22714 Wednesday 8th May, 2013 at 23:33:53 UTC by Robbbert
(MESS) D6800: Added support for machine-language games (all 2 of them).
[src/mess/drivers]d6800.c

trunk/src/mess/drivers/d6800.c
r22713r22714
410410         image.message(" Quickload: size=%04X : start=%04X : end=%04X : exec=%04X",quick_length,quick_addr,quick_addr+quick_length,exec_addr);
411411
412412         // Start the quickload
413         m_maincpu->set_pc(exec_addr);
413         if (strcmp(image.filetype(), "bin") == 0)
414            m_maincpu->set_pc(quick_addr);
415         else
416            m_maincpu->set_pc(exec_addr);
414417
415418         result = IMAGE_INIT_PASS;
416419      }
r22713r22714
450453   MCFG_TIMER_DRIVER_ADD_PERIODIC("d6800_p", d6800_state, d6800_p, attotime::from_hz(40000))
451454
452455   /* quickload */
453   MCFG_QUICKLOAD_ADD("quickload", d6800_state, d6800, "c8,ch8", 1)
456   MCFG_QUICKLOAD_ADD("quickload", d6800_state, d6800, "bin,c8,ch8", 1)
454457MACHINE_CONFIG_END
455458
456459/* ROMs */

Previous 199869 Revisions Next


© 1997-2024 The MAME Team