mirror of
https://github.com/holub/mame
synced 2025-07-06 02:18:09 +03:00
Correct memcpy size NW
This commit is contained in:
parent
716e5fe21a
commit
4166617314
@ -2940,7 +2940,7 @@ void nemesis_state::bubsys_init()
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
const uint8_t *src = memregion("maincpu")->base();
|
const uint8_t *src = memregion("maincpu")->base();
|
||||||
memcpy(m_bubsys_shared_ram, src, 0x2000);
|
memcpy(m_bubsys_shared_ram, src, 0x1e0);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
The MCU sets this flag once the boot program is copied. The 68000 will reset
|
The MCU sets this flag once the boot program is copied. The 68000 will reset
|
||||||
|
Loading…
Reference in New Issue
Block a user