trunk/src/mame/includes/homerun.h
| r17912 | r17913 | |
| 15 | 15 | m_maincpu(*this, "maincpu"), |
| 16 | 16 | m_videoram(*this, "videoram"), |
| 17 | 17 | m_spriteram(*this, "spriteram"), |
| 18 | m_colorram(*this, "colorram"), |
| 18 | 19 | m_d7756(*this, "d7756"), |
| 19 | 20 | m_samples(*this, "samples") |
| 20 | 21 | { } |
| r17912 | r17913 | |
| 22 | 23 | required_device<cpu_device> m_maincpu; |
| 23 | 24 | required_shared_ptr<UINT8> m_videoram; |
| 24 | 25 | required_shared_ptr<UINT8> m_spriteram; |
| 26 | required_shared_ptr<UINT8> m_colorram; |
| 25 | 27 | optional_device<upd7756_device> m_d7756; |
| 26 | 28 | optional_device<samples_device> m_samples; |
| 27 | 29 | |
trunk/src/mame/drivers/homerun.c
| r17912 | r17913 | |
| 17 | 17 | - dump homerun sample rom |
| 18 | 18 | - improve controls/dips |
| 19 | 19 | - fix sprite glitches in ganjaja Hop Step & Jump |
| 20 | | - fix missing water tiles in ganjaja Hop Step & Jump |
| 21 | 20 | |
| 22 | 21 | ----------------------------------- |
| 23 | 22 | Moero!! Pro Yakyuu Homerun Kyousou |
| r17912 | r17913 | |
| 106 | 105 | AM_RANGE(0x4000, 0x7fff) AM_ROMBANK("bank1") |
| 107 | 106 | AM_RANGE(0x8000, 0x9fff) AM_RAM_WRITE(homerun_videoram_w) AM_SHARE("videoram") |
| 108 | 107 | AM_RANGE(0xa000, 0xa0ff) AM_RAM AM_SHARE("spriteram") |
| 109 | | AM_RANGE(0xb000, 0xb0ff) AM_RAM_WRITE(homerun_color_w) |
| 108 | AM_RANGE(0xb000, 0xb03f) AM_RAM_WRITE(homerun_color_w) AM_SHARE("colorram") |
| 110 | 109 | AM_RANGE(0xc000, 0xdfff) AM_RAM |
| 111 | 110 | ADDRESS_MAP_END |
| 112 | 111 | |