blob: 9efcf1501b38507f196ac3c4f7d7dc7c0f383233 (
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
|
// license:BSD-3-Clause
// copyright-holders:S. Smith, David Haywood, Fabio Priuli, iq_132
#ifndef MAME_BUS_NEOGEO_PROT_MSLUGX_H
#define MAME_BUS_NEOGEO_PROT_MSLUGX_H
#pragma once
DECLARE_DEVICE_TYPE(NG_MSLUGX_PROT, mslugx_prot_device)
class mslugx_prot_device : public device_t
{
public:
// construction/destruction
mslugx_prot_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL());
void protection_w(offs_t offset, uint16_t data);
uint16_t protection_r(address_space &space, offs_t offset);
protected:
virtual void device_start() override;
virtual void device_reset() override;
private:
uint16_t m_counter;
uint16_t m_command;
};
#endif // MAME_BUS_NEOGEO_PROT_MSLUGX_H
|