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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
// license:BSD-3-Clause
// copyright-holders:smf
#ifndef MAME_CPU_F2MC16_MB90610A_H
#define MAME_CPU_F2MC16_MB90610A_H
#pragma once
#include "f2mc16.h"
#include "f2mc16_adc.h"
#include "f2mc16_clock.h"
#include "f2mc16_intc.h"
#include "f2mc16_port.h"
#include "f2mc16_ppg.h"
#include "f2mc16_reload.h"
#include "f2mc16_uart.h"
class mb90610a_device :
public f2mc16_device
{
public:
mb90610a_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
auto &adc() const { if (m_adc) return *m_adc; return *subdevice<f2mc16_adc_device>(m_adc.finder_tag()); }
template<unsigned N> typename std::enable_if<N >= 1 && N <= 10, f2mc16_port_device>::type &port() const { if (m_port[N - 1]) return *m_port[N - 1]; return *subdevice<f2mc16_port_device>(m_port[N - 1].finder_tag()); }
auto &ppg() const { if (m_ppg) return *m_ppg; return *subdevice<f2mc16_ppg_device>(m_ppg.finder_tag()); }
template<unsigned N> typename std::enable_if<N < 2, f2mc16_reload_timer_device>::type &reload_timer() const { if (m_reload_timer[N]) return *m_reload_timer[N]; return *subdevice<f2mc16_reload_timer_device>(m_reload_timer[N].finder_tag()); }
template<unsigned N> typename std::enable_if<N < 3, f2mc16_uart_device>::type &uart() const { if (m_uart[N]) return *m_uart[N]; return *subdevice<f2mc16_uart_device>(m_uart[N].finder_tag()); }
protected:
mb90610a_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, uint16_t internal_ram_end);
// device_t
virtual void device_add_mconfig(machine_config &config) override ATTR_COLD;
virtual space_config_vector memory_space_config() const override ATTR_COLD;
void internal_map(address_map &map) ATTR_COLD;
const address_space_config m_program_config;
const uint16_t m_internal_ram_end;
required_device<f2mc16_adc_device> m_adc;
required_device<f2mc16_clock_generator_device> m_clock_generator;
required_device<f2mc16_intc_device> m_intc;
required_device_array<f2mc16_port_device, 10> m_port;
required_device<f2mc16_ppg_device> m_ppg;
required_device_array<f2mc16_reload_timer_device, 2> m_reload_timer;
required_device_array<f2mc16_uart_device, 3> m_uart;
};
class mb90611a_device : public mb90610a_device
{
public:
mb90611a_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
};
DECLARE_DEVICE_TYPE(MB90610A, mb90610a_device)
DECLARE_DEVICE_TYPE(MB90611A, mb90611a_device)
#endif // MAME_CPU_F2MC16_MB90610A_H
|