mirror of
https://github.com/holub/mame
synced 2025-06-03 03:16:30 +03:00
whitestar: fixed nvram issue.
This commit is contained in:
parent
4684eaa4d6
commit
8f3b0157b6
@ -61,7 +61,6 @@ Status:
|
|||||||
- Volume is quite low. On some machines it can be boosted by hitting NUM2 to get the volume menu, then hold NUM1 to max.
|
- Volume is quite low. On some machines it can be boosted by hitting NUM2 to get the volume menu, then hold NUM1 to max.
|
||||||
|
|
||||||
ToDo:
|
ToDo:
|
||||||
- NVRAM (it's there but doesn't save anything)
|
|
||||||
- ATMEL ARM soundcard
|
- ATMEL ARM soundcard
|
||||||
- Mechanical sounds
|
- Mechanical sounds
|
||||||
- Outputs
|
- Outputs
|
||||||
@ -313,6 +312,8 @@ void whitestar_state::whitestar(machine_config &config)
|
|||||||
m_maincpu->set_addrmap(AS_PROGRAM, &whitestar_state::whitestar_map);
|
m_maincpu->set_addrmap(AS_PROGRAM, &whitestar_state::whitestar_map);
|
||||||
m_maincpu->set_periodic_int(FUNC(whitestar_state::whitestar_firq_interrupt), attotime::from_hz(976)); // value taken from PinMAME
|
m_maincpu->set_periodic_int(FUNC(whitestar_state::whitestar_firq_interrupt), attotime::from_hz(976)); // value taken from PinMAME
|
||||||
|
|
||||||
|
NVRAM(config, "nvram", nvram_device::DEFAULT_ALL_0);
|
||||||
|
|
||||||
/* sound hardware */
|
/* sound hardware */
|
||||||
genpin_audio(config);
|
genpin_audio(config);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user