blob: d7e3501e120b9ac54381d6bc2c3baa8ddad070a5 (
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
29
30
31
32
33
34
35
36
37
38
39
40
|
// license:BSD-3-Clause
// copyright-holders:David Haywood
#ifndef __VCS_HARMONY_H
#define __VCS_HARMONY_H
#include "rom.h"
#include "cpu/arm7/lpc210x.h"
// ======================> a26_rom_harmony_device
class a26_rom_harmony_device : public a26_rom_f8_device
{
public:
// construction/destruction
a26_rom_harmony_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
// device-level overrides
virtual void device_start() override;
virtual machine_config_constructor device_mconfig_additions() const override;
virtual void device_reset() override;
// reading and writing
virtual DECLARE_READ8_MEMBER(read_rom) override;
virtual DECLARE_WRITE8_MEMBER(write_bank) override;
DECLARE_READ8_MEMBER(read8_r);
void check_bankswitch(offs_t offset);
private:
required_device<lpc210x_device> m_cpu;
};
// device type definition
extern const device_type A26_ROM_HARMONY;
#endif
|