diff options
| author | 2019-04-20 03:27:01 +0200 | |
|---|---|---|
| committer | 2019-04-20 03:27:01 +0200 | |
| commit | ecb554241c811f5bbcd8cf6c275012223dedaf3f (patch) | |
| tree | c9a07a31efccadc6be0a6b1a2e11def9e52b3ab9 /src | |
| parent | ad0dbabc1f609a6b237d87cac0ff0c4c118323cf (diff) | |
Funworld.cpp: I2C bus inclusion only for Saloon/Nevada instead of all games.
[Grull Osgo]
Diffstat (limited to 'src')
| -rw-r--r-- | src/mame/drivers/funworld.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/mame/drivers/funworld.cpp b/src/mame/drivers/funworld.cpp index 34c6717930b..a116b14d7f6 100644 --- a/src/mame/drivers/funworld.cpp +++ b/src/mame/drivers/funworld.cpp @@ -1173,6 +1173,8 @@ - Promoted the game to working. - Added technical and game notes. + - I2C bus inclusion only for Saloon/Nevada instead of all games. + *** TO DO *** @@ -3600,11 +3602,6 @@ void funworld_state::fw1stpal(machine_config &config) ay8910.port_a_write_callback().set(FUNC(funworld_state::funworld_lamp_a_w)); ay8910.port_b_write_callback().set(FUNC(funworld_state::funworld_lamp_b_w)); ay8910.add_route(ALL_OUTPUTS, "mono", 2.5); /* analyzed to avoid clips */ - - /* Serial Memory */ - i2cmem_device &m_i2cmem(I2CMEM(config, "i2cmem", 0)); - m_i2cmem.set_data_size(256); - m_i2cmem.set_e0(1); } @@ -3685,6 +3682,11 @@ void funworld_state::saloon(machine_config &config) config.device_remove("pia0"); config.device_remove("pia1"); + + /* Serial Memory */ + i2cmem_device &m_i2cmem(I2CMEM(config, "i2cmem", 0)); + m_i2cmem.set_data_size(256); + m_i2cmem.set_e0(1); } |
