blob: d10a23c124628ebadf65bbadf6490b586a3f3a44 (
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
/***************************************************************************
cdu76s.h
Sony CDU-76S
***************************************************************************/
#pragma once
#ifndef __CDU76S_H__
#define __CDU76S_H__
#include "scsicd.h"
#include "machine/t10mmc.h"
class sony_cdu76s_device : public scsicd_device
{
public:
sony_cdu76s_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
virtual void ExecCommand() override;
virtual void ReadData( UINT8 *data, int dataLength ) override;
};
// device type definition
extern const device_type CDU76S;
#endif
|