summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/scsicd.h
blob: be57d95ba922ab28774ebad5f263a5742f0c7bc4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/***************************************************************************

 scsicd.h

***************************************************************************/

#ifndef _SCSICD_H_
#define _SCSICD_H_

#include "machine/scsihle.h"
#include "machine/t10mmc.h"

class scsicd_device : public scsihle_device,
	public t10mmc
{
public:
	// construction/destruction
	scsicd_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
	scsicd_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);
	virtual machine_config_constructor device_mconfig_additions() const;

	static struct cdrom_interface cd_intf;

protected:
	virtual void device_start();
};

// device type definition
extern const device_type SCSICD;

#endif