summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Roberto Fresca <robbie@robertofresca.com>2018-12-02 20:25:35 +0100
committer Roberto Fresca <robbie@robertofresca.com>2018-12-02 20:25:35 +0100
commitd3cc5f0c2fa532cbff8233bb05c8b5a33a1f59b2 (patch)
tree58d1777535f138a92792b032a6d8d022c9c8935b
parent9357ab2d5b02cbbc722777ddf8a6302279f56734 (diff)
ampoker.cpp updates: Fixed the NVRAM size. [Grull Osgo]
-rw-r--r--src/mame/drivers/ampoker2.cpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/mame/drivers/ampoker2.cpp b/src/mame/drivers/ampoker2.cpp
index 441bc375f1c..41f2e2958a2 100644
--- a/src/mame/drivers/ampoker2.cpp
+++ b/src/mame/drivers/ampoker2.cpp
@@ -8,8 +8,8 @@
Company: Novomatic.
Year: 1990.
- Driver by Roberto Fresca, with a lot of help of Grull Osgo.
- Based on a preliminary work of Curt Coder.
+ Driver by Roberto Fresca & Grull Osgo.
+
--- Supported Sets ---
@@ -281,6 +281,11 @@
--- DRIVER UPDATES ---
+ [2018-12-02]
+
+ - Fixed the NVRAM size to 0x800.
+
+
[2018-11-10]
Piccolo Poker 100 from Admiral/Novomatic.
@@ -401,6 +406,7 @@
#include "ampoker2.lh"
#include "sigmapkr.lh"
+
void ampoker2_state::machine_start()
{
m_lamps.resolve();
@@ -612,7 +618,7 @@ WRITE8_MEMBER(ampoker2_state::watchdog_reset_w)
void ampoker2_state::program_map(address_map &map)
{
map(0x0000, 0xbfff).rom();
- map(0xc000, 0xcfff).ram().share("nvram");
+ map(0xc000, 0xc7ff).ram().share("nvram");
map(0xe000, 0xefff).ram().w(FUNC(ampoker2_state::videoram_w)).share("videoram");
}