summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/msx_systemflags.h
blob: 616ea57f5da7c7de443e9d0c95195bd3c8812951 (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
// license:BSD-3-Clause
// copyright-holders:Wilbert Pol
#ifndef __MSX_SYSTEMFLAGS_H
#define __MSX_SYSTEMFLAGS_H

/*
Some MSX2+ and TurboR machines have a 'system flags' I/O port ($F4).
The value in this register is cleared on power up, but it keeps it's
value during a reset of the system.
*/

extern const device_type MSX_SYSTEMFLAGS;


#define MCFG_MSX_SYSTEMFLAGS_ADD(_tag, _initial_value) \
	MCFG_DEVICE_ADD(_tag, MSX_SYSTEMFLAGS, 0) \
	msx_systemflags_device::set_initial_value(*device, _initial_value);


class msx_systemflags_device : public device_t
{
public:
	msx_systemflags_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);

	// static configuration helpers
	static void set_initial_value(device_t &device, UINT8 initial_value) { dynamic_cast<msx_systemflags_device &>(device).m_initial_value = initial_value; }

	DECLARE_READ8_MEMBER(read);
	DECLARE_WRITE8_MEMBER(write);

protected:
	virtual void device_start();

private:
	UINT8 m_initial_value;
	UINT8 m_system_flags;
};

#endif