summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/pc9801_cd.h
blob: 5fdc19eaf21e28bd652e951332a92ceb8208f15f (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
// license:BSD-3-Clause
// copyright-holders:smf

#ifndef __PC9801_CD_H__
#define __PC9801_CD_H__

#include "machine/atapicdr.h"

class pc9801_cd_device : public atapi_cdrom_device
{
public:
	pc9801_cd_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);

protected:
	virtual void fill_buffer() override;
	virtual void process_command() override;
	virtual void process_buffer() override;
};

// device type definition
extern const device_type PC9801_CD;

#endif