blob: a7c686e910dd8633b918a3efd86bea2c68f8066c (
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:Olivier Galibert
/***************************************************************************
h8s2600.h
H8S-2600 base cpu emulation
Adds the multiply-and-accumulate register and related instructions
***************************************************************************/
#ifndef __H8S2600_H__
#define __H8S2600_H__
#include "h8s2000.h"
class h8s2600_device : public h8s2000_device {
public:
h8s2600_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source, address_map_delegate map_delegate);
protected:
static const disasm_entry disasm_entries[];
virtual offs_t disasm_disassemble(char *buffer, offs_t pc, const uint8_t *oprom, const uint8_t *opram, uint32_t options) override;
virtual void do_exec_full() override;
virtual void do_exec_partial() override;
#define O(o) void o ## _full(); void o ## _partial()
O(clrmac);
O(ldmac_r32l_mach); O(ldmac_r32l_macl);
O(mac_r32ph_r32pl);
O(stmac_mach_r32l); O(stmac_macl_r32l);
#undef O
};
#endif
|