Previous 199869 Revisions Next

r21049 Wednesday 13th February, 2013 at 21:58:54 UTC by Wilbert Pol
Fix some compile errors (nw)
[src/mess/machine]msx.c

trunk/src/mess/machine/msx.c
r21048r21049
1515
1616#define VERBOSE 0
1717
18static void msx_memory_init (running_machine &machine);
19static void msx_memory_set_carts (running_machine &machine);
2018
21
2219static int msx_probe_type (UINT8* pmem, int size)
2320{
2421   int kon4, kon5, asc8, asc16, i;
r21048r21049
536533
537534INTERRUPT_GEN_MEMBER(msx_state::msx_interrupt)
538535{
539   int i;
540
541536   m_mouse[0] = m_io_mouse0->read();
542537   m_mouse_stat[0] = -1;
543538   m_mouse[1] = m_io_mouse1->read();
r21048r21049
962957   const msx_slot_layout *layout;
963958   int page;
964959
965   if (!layout)
960   if (!m_layout)
966961      return;
967962
968963   for (layout = m_layout; layout->entry != MSX_LAYOUT_LAST; layout++)

Previous 199869 Revisions Next


© 1997-2024 The MAME Team