summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/68340ser.cpp
blob: 230b6c7a71b1bb51473a35ed7a11a9931397ccf0 (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
/* 68340 SERIAL module */

#include "emu.h"
#include "68340.h"


READ32_MEMBER( m68340cpu_device::m68340_internal_serial_r )
{
	m68340cpu_device *m68k = this;
	m68340_serial* serial = m68k->m68340SERIAL;
	assert(serial != nullptr);

	if (serial)
	{
		int pc = space.device().safe_pc();
		logerror("%08x m68340_internal_serial_r %08x, (%08x)\n", pc, offset*4,mem_mask);
	}

	return 0x00000000;
}

WRITE32_MEMBER( m68340cpu_device::m68340_internal_serial_w )
{
	m68340cpu_device *m68k = this;
	m68340_serial* serial = m68k->m68340SERIAL;
	assert(serial != nullptr);

	if (serial)
	{
		int pc = space.device().safe_pc();
		logerror("%08x m68340_internal_serial_w %08x, %08x (%08x)\n", pc, offset*4,data,mem_mask);
	}

}

void m68340_serial::reset(void)
{
}