blob: fd87746f6f1f1fe801f2b3c28a9f2a0d59d70583 (
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 __D9060HD__
#define __D9060HD__
#include "scsihd.h"
class d9060hd_device : public scsihd_device
{
public:
// construction/destruction
d9060hd_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
virtual void ExecCommand();
};
// device type definition
extern const device_type D9060HD;
#endif
|