summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/bus/scsi/pc9801_sasi.h
blob: 21876a6f519bddd76b99b4023dcba9d19c0400ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef PC9801_SASI_H_
#define PC9801_SASI_H_

#include "scsihd.h"

class pc9801_sasi_device  : public scsihd_device
{
public:
	// construction/destruction
	pc9801_sasi_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);

	virtual void ExecCommand();
};

// device type definition
extern const device_type PC9801_SASI;

#endif /* PC9801_SASI_H_ */