diff options
author | 2019-04-25 10:45:09 -0400 | |
---|---|---|
committer | 2019-04-25 10:45:09 -0400 | |
commit | 4166617314a62d3d2ef5cddfbb0a7ac1cd7afd07 (patch) | |
tree | 9d8a7f41e4188cdd168f3ce282add611a4a87ecf | |
parent | 716e5fe21a7d36bcc497718efc5d1047dfd0abac (diff) |
Correct memcpy size NW
-rw-r--r-- | src/mame/drivers/nemesis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/nemesis.cpp b/src/mame/drivers/nemesis.cpp index 8e8e8c830be..5ce77ac4c33 100644 --- a/src/mame/drivers/nemesis.cpp +++ b/src/mame/drivers/nemesis.cpp @@ -2940,7 +2940,7 @@ void nemesis_state::bubsys_init() */ 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 |