summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/k573npu.h
blob: b0fb1e0ef4abd138969a68c9c208ea4568034eec (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:???
// 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