blob: c3e99bba9032151818643a54f8d045b62e8672f6 (
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:Fabio Priuli
#ifndef __NES_HES_H
#define __NES_HES_H
#include "nxrom.h"
// ======================> nes_hes_device
class nes_hes_device : public nes_nrom_device
{
public:
// construction/destruction
nes_hes_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
// device-level overrides
virtual void device_start() override;
virtual DECLARE_WRITE8_MEMBER(write_l) override;
virtual void pcb_reset() override;
};
// device type definition
extern const device_type NES_HES;
#endif
|