trunk/src/mess/drivers/nes.c
| r32080 | r32081 | |
| 794 | 794 | |
| 795 | 795 | // if there is no cart inserted, setup the disk expansion instead |
| 796 | 796 | if (!m_cartslot->m_cart) |
| 797 | { |
| 797 | 798 | setup_disk(m_cartslot2); |
| 799 | |
| 800 | // replace the famicom disk ROM with the famicom twin one (until we modernize the floppy drive) |
| 801 | m_maincpu->space(AS_PROGRAM).install_read_bank(0xe000, 0xffff, "ftbios"); |
| 802 | membank("ftbios")->set_base(machine().root_device().memregion("maincpu")->base() + 0xe000); |
| 803 | } |
| 798 | 804 | } |
| 799 | 805 | |
| 800 | 806 | MACHINE_RESET_MEMBER( nes_state, famitwin ) |