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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
// license:GPL-2.0+
// copyright-holders:Dirk Best
/***************************************************************************
Dick Smith VZ-200/300 RTTY Cartridge (K-6318)
***************************************************************************/
#include "emu.h"
#include "rtty.h"
//**************************************************************************
// DEVICE DEFINITIONS
//**************************************************************************
DEFINE_DEVICE_TYPE(VTECH_RTTY_INTERFACE, vtech_rtty_interface_device, "vtech_rtty", "DSE VZ-200/300 RTTY Interface")
//-------------------------------------------------
// rom_region - device-specific ROM region
//-------------------------------------------------
ROM_START( rtty )
ROM_REGION(0x1000, "software", 0)
ROM_LOAD("vzrtty.ic3", 0x0000, 0x1000, CRC(ccf4289b) SHA1(de737ef0e0b582b3102da473836af1fa159a2e78))
ROM_END
const tiny_rom_entry *vtech_rtty_interface_device::device_rom_region() const
{
return ROM_NAME( rtty );
}
//**************************************************************************
// LIVE DEVICE
//**************************************************************************
//-------------------------------------------------
// vtech_rtty_interface_device - constructor
//-------------------------------------------------
vtech_rtty_interface_device::vtech_rtty_interface_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, VTECH_RTTY_INTERFACE, tag, owner, clock),
device_vtech_memexp_interface(mconfig, *this)
{
}
//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------
void vtech_rtty_interface_device::device_start()
{
}
//-------------------------------------------------
// device_reset - device-specific reset
//-------------------------------------------------
void vtech_rtty_interface_device::device_reset()
{
// program
program_space().install_rom(0x4000, 0x4fff, 0x1000, memregion("software")->base());
// data
program_space().install_read_handler(0x5000, 0x57ff, read8_delegate(FUNC(vtech_rtty_interface_device::receive_data_r), this));
program_space().install_write_handler(0x5800, 0x5fff, write8_delegate(FUNC(vtech_rtty_interface_device::transmit_data_w), this));
program_space().install_write_handler(0x6000, 0x67ff, write8_delegate(FUNC(vtech_rtty_interface_device::relay_w), this));
}
//**************************************************************************
// IMPLEMENTATION
//**************************************************************************
READ8_MEMBER( vtech_rtty_interface_device::receive_data_r )
{
return 0xff;
}
WRITE8_MEMBER( vtech_rtty_interface_device::transmit_data_w )
{
logerror("transmit_w: %d\n", BIT(data, 7));
}
WRITE8_MEMBER( vtech_rtty_interface_device::relay_w )
{
logerror("relay_w: %d\n", BIT(data, 7));
}
|