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