trunk/src/mess/machine/msx.c
| r21048 | r21049 | |
| 15 | 15 | |
| 16 | 16 | #define VERBOSE 0 |
| 17 | 17 | |
| 18 | | static void msx_memory_init (running_machine &machine); |
| 19 | | static void msx_memory_set_carts (running_machine &machine); |
| 20 | 18 | |
| 21 | | |
| 22 | 19 | static int msx_probe_type (UINT8* pmem, int size) |
| 23 | 20 | { |
| 24 | 21 | int kon4, kon5, asc8, asc16, i; |
| r21048 | r21049 | |
| 536 | 533 | |
| 537 | 534 | INTERRUPT_GEN_MEMBER(msx_state::msx_interrupt) |
| 538 | 535 | { |
| 539 | | int i; |
| 540 | | |
| 541 | 536 | m_mouse[0] = m_io_mouse0->read(); |
| 542 | 537 | m_mouse_stat[0] = -1; |
| 543 | 538 | m_mouse[1] = m_io_mouse1->read(); |
| r21048 | r21049 | |
| 962 | 957 | const msx_slot_layout *layout; |
| 963 | 958 | int page; |
| 964 | 959 | |
| 965 | | if (!layout) |
| 960 | if (!m_layout) |
| 966 | 961 | return; |
| 967 | 962 | |
| 968 | 963 | for (layout = m_layout; layout->entry != MSX_LAYOUT_LAST; layout++) |