summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/rw5000/a5900.h
blob: 1976b01d0cf618bffbfb96211d0c95cbabc3ba91 (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
// license:BSD-3-Clause
// copyright-holders:hap
/*

  Rockwell A5900 MCU

*/

#ifndef MAME_CPU_RW5000_A5900_H
#define MAME_CPU_RW5000_A5900_H

#pragma once

#include "a5000.h"


class a5900_cpu_device : public a5000_cpu_device
{
public:
	a5900_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);

protected:
	void program_512x8(address_map &map);

	// opcode handlers
	virtual void op_read() override;
};


DECLARE_DEVICE_TYPE(A5900, a5900_cpu_device)

#endif // MAME_CPU_RW5000_A5900_H