blob: 1a25c00b502b77ecc42aaaef648c55fc2577c578 (
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 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, std::string tag, device_t *owner, UINT32 clock);
protected:
virtual void device_start() override;
virtual const rom_entry *device_rom_region() const override;
};
#endif
|