diff options
author | 2013-10-22 16:45:06 +0000 | |
---|---|---|
committer | 2013-10-22 16:45:06 +0000 | |
commit | cd6f73b9c7a6a8b8ee734051cf4ae9fabff477da (patch) | |
tree | 49ff21880abf2d678c4b297fbf12115973af8bf7 /src/mess/machine/a2sam.h | |
parent | ef774dd504626acb2e7648ada9ea8d8783937795 (diff) |
(MESS) Apple II bus moving day (nw)
Diffstat (limited to 'src/mess/machine/a2sam.h')
-rw-r--r-- | src/mess/machine/a2sam.h | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/src/mess/machine/a2sam.h b/src/mess/machine/a2sam.h deleted file mode 100644 index ebc91831d8c..00000000000 --- a/src/mess/machine/a2sam.h +++ /dev/null @@ -1,46 +0,0 @@ -/********************************************************************* - - a2sam.h - - Implementation of the S.A.M. "Software Automated Mouth" card - -*********************************************************************/ - -#ifndef __A2BUS_SAM__ -#define __A2BUS_SAM__ - -#include "emu.h" -#include "machine/a2bus.h" -#include "sound/dac.h" - -//************************************************************************** -// TYPE DEFINITIONS -//************************************************************************** - -class a2bus_sam_device: - public device_t, - public device_a2bus_card_interface -{ -public: - // construction/destruction - a2bus_sam_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source); - a2bus_sam_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); - - // optional information overrides - virtual machine_config_constructor device_mconfig_additions() const; - - required_device<dac_device> m_dac; - -protected: - virtual void device_start(); - virtual void device_reset(); - - // overrides of standard a2bus slot functions - virtual void write_c0nx(address_space &space, UINT8 offset, UINT8 data); - virtual bool take_c800(); -}; - -// device type definition -extern const device_type A2BUS_SAM; - -#endif /* __A2BUS_SAM__ */ |