blob: e231273f8d0ffec655f96accaa23b665b4af69e8 (
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
|
#pragma once
#ifndef __SPC700DS_H__
#define __SPC700DS_H__
/* ======================================================================== */
/* =============================== COPYRIGHT ============================== */
/* ======================================================================== */
/*
Sony SPC700 CPU Emulator V1.0
Copyright Karl Stenerud
All rights reserved.
Permission is granted to use this source code for non-commercial purposes.
To use this code for commercial purposes, you must get permission from the
author (Karl Stenerud) at karl@higashiyama-unet.ocn.ne.jp.
*/
#include "cpuintrf.h"
CPU_DISASSEMBLE( spc700 );
#define spc700_read_8_disassembler(addr) program_read_byte_8(addr)
#endif /* __SPC700DS_H__ */
|