diff options
Diffstat (limited to 'src/mame/drivers/m79152pc.cpp')
-rw-r--r-- | src/mame/drivers/m79152pc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/m79152pc.cpp b/src/mame/drivers/m79152pc.cpp index dc6ecf88278..cf041466982 100644 --- a/src/mame/drivers/m79152pc.cpp +++ b/src/mame/drivers/m79152pc.cpp @@ -134,7 +134,7 @@ void m79152pc_state::lc_reset_w(u8 data) void m79152pc_state::mem_map(address_map &map) { map.unmap_value_high(); - map(0x0000, 0x3fff).rom().region("maincpu", 0);; + map(0x0000, 0x3fff).rom().region("maincpu", 0); map(0x4000, 0x47ff).ram(); map(0x8000, 0x8fff).ram().share("videoram"); map(0x9000, 0x9fff).ram().share("attributes"); |