mirror of
https://github.com/holub/mame
synced 2025-04-23 17:00:53 +03:00
cybiko: Remove the ram mirror, it hides when the code fails [O.Galibert]
This commit is contained in:
parent
f42b559baf
commit
923539399b
@ -27,13 +27,13 @@
|
||||
DRIVER_INIT_MEMBER(cybiko_state,cybiko)
|
||||
{
|
||||
_logerror( 0, ("init_cybikov1\n"));
|
||||
m_maincpu->space(AS_PROGRAM).install_ram(0x200000, 0x200000 + m_ram->size() - 1, 0, 0x200000 - m_ram->size(), m_ram->pointer());
|
||||
m_maincpu->space(AS_PROGRAM).install_ram(0x200000, 0x200000 + m_ram->size() - 1, m_ram->pointer());
|
||||
}
|
||||
|
||||
DRIVER_INIT_MEMBER(cybiko_state,cybikoxt)
|
||||
{
|
||||
_logerror( 0, ("init_cybikoxt\n"));
|
||||
m_maincpu->space(AS_PROGRAM).install_ram(0x400000, 0x400000 + m_ram->size() - 1, 0, 0x200000 - m_ram->size(), m_ram->pointer());
|
||||
m_maincpu->space(AS_PROGRAM).install_ram(0x400000, 0x400000 + m_ram->size() - 1, m_ram->pointer());
|
||||
}
|
||||
|
||||
QUICKLOAD_LOAD_MEMBER( cybiko_state, cybiko )
|
||||
|
Loading…
Reference in New Issue
Block a user