blob: 9aa54dac09019b72daacda5d4a2d553a99aa745b (
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
|
// license:BSD-3-Clause
// copyright-holders:David Haywood
#ifndef MAME_MACHINE_NAMCO_C67_H
#define MAME_MACHINE_NAMCO_C67_H
#pragma once
#include "cpu/tms32025/tms32025.h"
// base class
class namco_c67_device : public tms32025_device
{
public:
namco_c67_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
virtual const tiny_rom_entry *device_rom_region() const override;
};
DECLARE_DEVICE_TYPE(NAMCO_C67, namco_c67_device)
#endif // MAME_MACHINE_NAMCO_C67_H
|