blob: 9d88f6bd1a8aeb099926b6d74671f256cd898341 (
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
|
// license:BSD-3-Clause
// copyright-holders:smf
/***************************************************************************
scsicd.h
***************************************************************************/
#ifndef MAME_BUS_SCSI_SCSICD_H
#define MAME_BUS_SCSI_SCSICD_H
#include "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_t clock);
protected:
scsicd_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock);
virtual void device_start() override;
virtual void device_add_mconfig(machine_config &config) override;
};
// device type definition
DECLARE_DEVICE_TYPE(SCSICD, scsicd_device)
#endif // MAME_BUS_SCSI_SCSICD_H
|