(MESS) x820ii: Fixed ROM error. [Curt Coder]

This commit is contained in:
Curt Coder 2014-11-02 12:25:28 +02:00
parent d226b4f8d4
commit 487526c990
2 changed files with 3 additions and 3 deletions

View File

@ -69,8 +69,8 @@ void xerox820ii_state::bankswitch(int bank)
if (bank)
{
/* ROM */
program.install_rom(0x0000, 0x17ff, m_rom->base());
program.unmap_readwrite(0x1800, 0x2fff);
program.install_rom(0x0000, 0x1fff, m_rom->base());
program.unmap_readwrite(0x2000, 0x2fff);
program.install_ram(0x3000, 0x3fff, m_video_ram);
program.unmap_readwrite(0x4000, 0xbfff);
}

View File

@ -97,7 +97,7 @@ public:
DECLARE_WRITE_LINE_MEMBER( fdc_intrq_w );
DECLARE_WRITE_LINE_MEMBER( fdc_drq_w );
void bankswitch(int bank);
virtual void bankswitch(int bank);
void update_nmi();
/* video state */