blob: db9af6a0dab2320283e758b89f4ac81ba4b73f40 (
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
32
33
34
|
// license:???
// copyright-holders:???
/***************************************************************************
cdu76s.h
Sony CDU-76S
Copyright Nicola Salmoria and the MAME Team.
Visit http://mamedev.org for licensing and usage restrictions.
***************************************************************************/
#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();
virtual void ReadData( UINT8 *data, int dataLength );
};
// device type definition
extern const device_type CDU76S;
#endif
|