blob: 410fbcf61c1347c665612dea274b4b9f67b40449 (
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:Patrick Mackinlay
#ifndef MAME_MACHINE_BERT_H
#define MAME_MACHINE_BERT_H
#pragma once
class bert_device : public device_t
{
public:
// configuration
template <typename T> void set_memory(T &&tag, int spacenum) { m_memory_space.set_tag(std::forward<T>(tag), spacenum); }
bert_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);
void map(address_map &map);
void set_qlc_mode(bool state);
protected:
virtual void device_start() override;
virtual void device_reset() override;
u16 read(offs_t offset);
void write(offs_t offset, u16 data, u16 mem_mask);
private:
required_address_space m_memory_space;
memory_access<24, 1, 0, ENDIANNESS_BIG>::cache m_memory;
u16 m_control;
u16 m_history;
u32 m_step;
bool m_qlc_mode;
u32 m_qlc_src;
};
DECLARE_DEVICE_TYPE(BERT, bert_device)
#endif // MAME_MACHINE_BERT_H
|