summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/k573mcr.h
blob: 7980321be3a2ed8d51c11c052dacf3ce9da2f230 (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
// license:BSD-3-Clause
// copyright-holders:smf
/*
 * Konami 573 Memory Card Reader
 *
 */

#pragma once

#ifndef __K573MCR_H__
#define __K573MCR_H__

#include "emu.h"

extern const device_type KONAMI_573_MEMORY_CARD_READER;

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

protected:
	virtual void device_start() override;

	virtual const tiny_rom_entry *device_rom_region() const override;
};

#endif