blob: b641dfafcc34ad735b34a9b4538f07f4561f81b9 (
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
41
42
43
44
45
46
47
48
49
50
51
52
|
// license:LGPL-2.1+
// copyright-holders:Michael Zapf
/****************************************************************************
TI-99 Myarc memory expansion
See myarcmem.c for documentation
Michael Zapf, September 2010
February 2012: Rewritten as class
*****************************************************************************/
#ifndef MAME_BUS_TI99_PEB_MYARCMEM_H
#define MAME_BUS_TI99_PEB_MYARCMEM_H
#pragma once
#include "peribox.h"
#include "machine/ram.h"
namespace bus::ti99::peb {
class myarc_memory_expansion_device : public device_t, public device_ti99_peribox_card_interface
{
public:
myarc_memory_expansion_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
void readz(offs_t offset, uint8_t *value) override;
void write(offs_t offset, uint8_t data) override;
void crureadz(offs_t offset, uint8_t *value) override;
void cruwrite(offs_t offset, uint8_t data) override;
protected:
void device_start() override;
void device_reset() override;
const tiny_rom_entry *device_rom_region() const override;
ioport_constructor device_input_ports() const override;
virtual void device_add_mconfig(machine_config &config) override;
private:
int get_base(int offset);
required_device<ram_device> m_ram;
uint8_t* m_dsrrom;
int m_bank;
int m_size;
};
} // end namespace bus::ti99::peb
DECLARE_DEVICE_TYPE_NS(TI99_MYARCMEM, bus::ti99::peb, myarc_memory_expansion_device)
#endif // MAME_BUS_TI99_PEB_MYARCMEM_H
|