Missed this one earlier (no whatsnew)

This commit is contained in:
R. Belmont 2011-01-24 23:51:56 +00:00
parent e719dbe3b5
commit 2fbe1d97b3

View File

@ -1,8 +1,14 @@
#include "cpu/upd7725/upd7725.h"
class ssv_state : public driver_device
{
public:
ssv_state(running_machine &machine, const driver_device_config_base &config)
: driver_device(machine, config) { }
: driver_device(machine, config),
m_dsp(*this, "dsp")
{ }
optional_device<upd96050_device> m_dsp;
UINT16 *scroll;
UINT16 *paletteram;