blob: f27644e0269c2711aebd9cbfcbbe6f267f4351a6 (
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
|
// license:BSD-3-Clause
// copyright-holders:smf
#ifndef MAME_MACHINE_RF5C296_H
#define MAME_MACHINE_RF5C296_H
#pragma once
#include "pccard.h"
#define MCFG_RF5C296_SLOT(name) \
rf5c296_device::set_pccard_name(*device, name);
class rf5c296_device : public device_t
{
public:
rf5c296_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// static configuration helpers
static void set_pccard_name(device_t &device, const char *name) { downcast<rf5c296_device &>(device).m_pccard_name = name; }
DECLARE_WRITE16_MEMBER(io_w);
DECLARE_READ16_MEMBER(io_r);
DECLARE_READ16_MEMBER(mem_r);
DECLARE_WRITE16_MEMBER(mem_w);
protected:
// device-level overrides
virtual void device_start() override;
private:
void reg_w(ATTR_UNUSED uint8_t reg, uint8_t data);
uint8_t reg_r(ATTR_UNUSED uint8_t reg);
unsigned char m_rf5c296_reg;
pccard_slot_device *m_pccard;
const char *m_pccard_name;
};
DECLARE_DEVICE_TYPE(RF5C296, rf5c296_device)
#endif // MAME_MACHINE_RF5C296_H
|