blob: c4995c42e0df5e1a42ad8186a3dbbac0cf2b5d98 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#pragma once
#ifndef __ACB4070__
#define __ACB4070__
#include "machine/scsihd.h"
class acb4070_device : public scsihd_device
{
public:
// construction/destruction
acb4070_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
virtual void ExecCommand( int *transferLength );
};
// device type definition
extern const device_type ACB4070;
#endif
|