trunk/src/mess/includes/gba.h
| r20848 | r20849 | |
| 147 | 147 | m_radac(*this, "direct_a_right"), |
| 148 | 148 | m_lbdac(*this, "direct_b_left"), |
| 149 | 149 | m_rbdac(*this, "direct_b_right"), |
| 150 | | m_gbsound(*this, "custom"){ } |
| 150 | m_gbsound(*this, "custom"), |
| 151 | m_io_in0(*this, "IN0") |
| 152 | { } |
| 151 | 153 | |
| 152 | 154 | required_device<cpu_device> m_maincpu; |
| 153 | 155 | required_shared_ptr<UINT32> m_gba_pram; |
| r20848 | r20849 | |
| 279 | 281 | TIMER_CALLBACK_MEMBER(perform_scan); |
| 280 | 282 | void gba_machine_stop(); |
| 281 | 283 | DECLARE_DEVICE_IMAGE_LOAD_MEMBER(gba_cart); |
| 284 | |
| 285 | protected: |
| 286 | required_ioport m_io_in0; |
| 282 | 287 | }; |
| 283 | 288 | |
| 284 | 289 | /*----------- defined in video/gba.c -----------*/ |