~ubuntu-branches/debian/wheezy/mame/wheezy

« back to all changes in this revision

Viewing changes to src/emu/sound/cdp1869.h

  • Committer: Bazaar Package Importer
  • Author(s): Jordi Mallach, Emmanuel Kasper, Félix Arreola Rodríguez, Jordi Mallach
  • Date: 2011-05-11 21:06:50 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110511210650-jizvh8a6x117y9hr
Tags: 0.142-1
[ Emmanuel Kasper ]
* New upstream release
* Set NOWERROR=1 to allow compiling with gcc-4.6
* Remove fix_powerpc_build.patch, as upstream has taken it in this release
* Add gnome-video-arcade front end as a suggested package

[ Félix Arreola Rodríguez ]
* Add kfreebsd-build.patch to quilt series, to fix build on kfreebsd

[ Jordi Mallach ]
* Remove unneeded and bogus addition of --with-quilt to the dh invocation.
* Add Cesare Falco (long time Ubuntu maintainer) to Uploaders, and wrap
  them into multiple lines.

Show diffs side-by-side

added added

removed removed

Lines of Context:
140
140
#define MCFG_CDP1869_ADD(_tag, _pixclock, _config, _map) \
141
141
        MCFG_DEVICE_ADD(_tag, CDP1869, _pixclock) \
142
142
        MCFG_DEVICE_CONFIG(_config) \
143
 
        MCFG_DEVICE_ADDRESS_MAP(0, _map)
 
143
        MCFG_DEVICE_ADDRESS_MAP(AS_0, _map)
144
144
 
145
145
#define MCFG_CDP1869_SCREEN_PAL_ADD(_tag, _clock) \
146
146
        MCFG_SCREEN_ADD(_tag, RASTER) \
227
227
        virtual void device_config_complete();
228
228
 
229
229
        // device_config_memory_interface overrides
230
 
        virtual const address_space_config *memory_space_config(int spacenum = 0) const;
 
230
        virtual const address_space_config *memory_space_config(address_spacenum spacenum = AS_0) const;
231
231
 
232
232
    // address space configurations
233
233
        const address_space_config              m_space_config;
271
271
        virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr);
272
272
 
273
273
        // internal callbacks
274
 
        static STREAM_UPDATE( static_stream_generate );
275
 
        virtual void stream_generate(stream_sample_t **inputs, stream_sample_t **outputs, int samples);
 
274
        virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples);
276
275
 
277
276
        inline bool is_ntsc();
278
277
        inline UINT8 read_page_ram_byte(offs_t address);