blob: c38f3c3bd9e60fcd5c875013f3de1b8c79ad46f9 (
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
|
// license:BSD-3-Clause
// copyright-holders:David Haywood
#ifndef MAME_AUDIO_NES_VT_APU_H
#define MAME_AUDIO_NES_VT_APU_H
#pragma once
#include "sound/nes_apu.h"
DECLARE_DEVICE_TYPE(NES_APU_VT, nes_apu_vt_device)
class nes_apu_vt_device : public nesapu_device
{
public:
// construction/destruction
nes_apu_vt_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
protected:
virtual void device_start() override;
virtual void device_reset() override;
private:
};
#endif // MAME_AUDIO_NES_VT_APU_H
|