| Previous | 199869 Revisions | Next |
| r20851 Friday 8th February, 2013 at 22:30:00 UTC by Wilbert Pol |
|---|
| (MESS) gba.c: Another small tagmap cleanup (nw) |
| [src/mess/drivers] | gba.c |
| [src/mess/includes] | gba.h |
| r20850 | r20851 | |
|---|---|---|
| 1907 | 1907 | |
| 1908 | 1908 | READ32_MEMBER(gba_state::gba_bios_r) |
| 1909 | 1909 | { |
| 1910 | UINT32 *rom = (UINT32 *)(*m | |
| 1910 | UINT32 *rom = (UINT32 *)(*m_region_maincpu); | |
| 1911 | 1911 | if (m_bios_protected != 0) |
| 1912 | 1912 | { |
| 1913 | 1913 | offset = (m_bios_last_address + 8) / 4; |
| r20850 | r20851 | |
|---|---|---|
| 148 | 148 | m_lbdac(*this, "direct_b_left"), |
| 149 | 149 | m_rbdac(*this, "direct_b_right"), |
| 150 | 150 | m_gbsound(*this, "custom"), |
| 151 | m_region_maincpu(*this, "maincpu"), | |
| 151 | 152 | m_io_in0(*this, "IN0") |
| 152 | 153 | { } |
| 153 | 154 | |
| r20850 | r20851 | |
| 283 | 284 | DECLARE_DEVICE_IMAGE_LOAD_MEMBER(gba_cart); |
| 284 | 285 | |
| 285 | 286 | protected: |
| 287 | required_memory_region m_region_maincpu; | |
| 286 | 288 | required_ioport m_io_in0; |
| 287 | 289 | }; |
| 288 | 290 |
| Previous | 199869 Revisions | Next |