Previous 199869 Revisions Next

r18008 Wednesday 19th September, 2012 at 07:16:56 UTC by Miodrag Milanović
Fix listxml (no whatsnew)
[src/emu/sound]st0016.c

trunk/src/emu/sound/st0016.c
r18007r18008
99#define VERBOSE (0)
1010#define LOG(x) do { if (VERBOSE) logerror x; } while (0)
1111
12struct st0016_state
12struct st0016_device_state
1313{
1414   sound_stream * stream;
1515   UINT8 **sound_ram;
r18007r18008
1717   UINT8 regs[0x100];
1818};
1919
20INLINE st0016_state *get_safe_token(device_t *device)
20INLINE st0016_device_state *get_safe_token(device_t *device)
2121{
2222   assert(device != NULL);
2323   assert(device->type() == ST0016);
24   return (st0016_state *)downcast<st0016_device *>(device)->token();
24   return (st0016_device_state *)downcast<st0016_device *>(device)->token();
2525}
2626
2727
2828READ8_DEVICE_HANDLER( st0016_snd_r )
2929{
30   st0016_state *info = get_safe_token(device);
30   st0016_device_state *info = get_safe_token(device);
3131   return info->regs[offset];
3232}
3333
3434WRITE8_DEVICE_HANDLER( st0016_snd_w )
3535{
36   st0016_state *info = get_safe_token(device);
36   st0016_device_state *info = get_safe_token(device);
3737   int voice = offset/32;
3838   int reg = offset & 0x1f;
3939   int oldreg = info->regs[offset];
r18007r18008
6060
6161static STREAM_UPDATE( st0016_update )
6262{
63   st0016_state *info = (st0016_state *)param;
63   st0016_device_state *info = (st0016_device_state *)param;
6464   UINT8 *sound_ram = *info->sound_ram;
6565   int v, i, snum;
6666   unsigned char *slot;
r18007r18008
137137static DEVICE_START( st0016 )
138138{
139139   const st0016_interface *intf = (const st0016_interface *)device->static_config();
140   st0016_state *info = get_safe_token(device);
140   st0016_device_state *info = get_safe_token(device);
141141
142142   info->sound_ram = intf->p_soundram;
143143
r18007r18008
150150   : device_t(mconfig, ST0016, "ST0016", tag, owner, clock),
151151     device_sound_interface(mconfig, *this)
152152{
153   m_token = global_alloc_clear(st0016_state);
153   m_token = global_alloc_clear(st0016_device_state);
154154}
155155
156156//-------------------------------------------------

Previous 199869 Revisions Next


© 1997-2024 The MAME Team