blob: 061070bf407c12649740348207ef90e9428d8a54 (
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
|
// license:BSD-3-Clause
// copyright-holders:R. Belmont, Karl Stenerud
#pragma once
#ifndef __M7700DS_H__
#define __M7700DS_H__
/*
Mitsubishi 7700 CPU Emulator v0.10
By R. Belmont
Based on:
G65C816 CPU Emulator V0.92
Copyright Karl Stenerud
All rights reserved.
*/
int m7700_disassemble(std::ostream &stream, unsigned int pc, unsigned int pb, const uint8_t *oprom, int m_flag, int x_flag);
#endif /* __M7700DS_H__ */
|