~ubuntu-branches/ubuntu/karmic/xmame/karmic

« back to all changes in this revision

Viewing changes to src/includes/bzone.h

  • Committer: Bazaar Package Importer
  • Author(s): Bruno Barrera C.
  • Date: 2007-02-16 10:06:54 UTC
  • mfrom: (2.1.5 edgy)
  • Revision ID: james.westby@ubuntu.com-20070216100654-iztas2cl47k5j039
Tags: 0.106-2
* Added Italian debconf templates translation. (closes: #382672)
* Added German debconf templates translation. (closes: #396610)
* Added Japanese debconf templates translation. (closes: #400011)
* Added Portuguese debconf templates translation. (closes: #409960)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*************************************************************************
2
2
 
3
 
        Atari Battle Zone hardware
 
3
    Atari Battle Zone hardware
4
4
 
5
5
*************************************************************************/
6
6
 
 
7
#include "sound/custom.h"
 
8
 
 
9
 
7
10
/*----------- defined in drivers/bzone.c -----------*/
8
11
 
9
12
READ8_HANDLER( bzone_IN0_r );
13
16
 
14
17
WRITE8_HANDLER( bzone_sounds_w );
15
18
 
16
 
int bzone_sh_start(const struct MachineSound *msound);
17
 
void bzone_sh_stop(void);
18
 
void bzone_sh_update(void);
 
19
void *bzone_sh_start(int clock, const struct CustomSound_interface *config);
19
20
 
20
21
 
21
22
/*----------- defined in sndhrdw/redbaron.c -----------*/
23
24
WRITE8_HANDLER( redbaron_sounds_w );
24
25
WRITE8_HANDLER( redbaron_pokey_w );
25
26
 
26
 
int redbaron_sh_start(const struct MachineSound *msound);
27
 
void redbaron_sh_stop(void);
28
 
void redbaron_sh_update(void);
 
27
void *redbaron_sh_start(int clock, const struct CustomSound_interface *config);