mirror of
https://github.com/holub/mame
synced 2025-05-25 23:35:26 +03:00
Added ATTR_NOTNULL to DAC sound calls
This commit is contained in:
parent
eae2b8fd06
commit
f4ca544b4e
@ -3,10 +3,10 @@
|
|||||||
#ifndef __DAC_H__
|
#ifndef __DAC_H__
|
||||||
#define __DAC_H__
|
#define __DAC_H__
|
||||||
|
|
||||||
void dac_data_w(const device_config *device, UINT8 data);
|
void dac_data_w(const device_config *device, UINT8 data) ATTR_NONNULL;
|
||||||
void dac_signed_data_w(const device_config *device, UINT8 data);
|
void dac_signed_data_w(const device_config *device, UINT8 data) ATTR_NONNULL;
|
||||||
void dac_data_16_w(const device_config *device, UINT16 data);
|
void dac_data_16_w(const device_config *device, UINT16 data) ATTR_NONNULL;
|
||||||
void dac_signed_data_16_w(const device_config *device, UINT16 data);
|
void dac_signed_data_16_w(const device_config *device, UINT16 data) ATTR_NONNULL;
|
||||||
|
|
||||||
WRITE8_DEVICE_HANDLER( dac_w );
|
WRITE8_DEVICE_HANDLER( dac_w );
|
||||||
WRITE8_DEVICE_HANDLER( dac_signed_w );
|
WRITE8_DEVICE_HANDLER( dac_signed_w );
|
||||||
|
Loading…
Reference in New Issue
Block a user