summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/k573npu.h
blob: 0d4895702bd6ced0d9ba675cd375334c80924eb5 (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:MAME
// copyright-holders:smf
/*
 * Konami 573 Network PCB Unit
 *
 */

#pragma once

#ifndef __K573NPU_H__
#define __K573NPU_H__

#include "emu.h"

extern const device_type KONAMI_573_NETWORK_PCB_UNIT;

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

protected:
	virtual void device_start();

	virtual const rom_entry *device_rom_region() const;
};

#endif