mirror of
https://github.com/holub/mame
synced 2025-05-22 13:48:55 +03:00
(MESS) x820ii: Fixed ROM error. [Curt Coder]
This commit is contained in:
parent
d226b4f8d4
commit
487526c990
@ -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);
|
||||
}
|
||||
|
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user