ampoker.cpp updates: Fixed the NVRAM size. [Grull Osgo]

This commit is contained in:
Roberto Fresca 2018-12-02 20:25:35 +01:00
parent 9357ab2d5b
commit d3cc5f0c2f

View File

@ -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");
}