blob: 8dcbf56b629b65da4b26be8a3ae31c7269bde9e3 (
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
|
#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.
*/
CPU_DISASSEMBLE( spc700 );
#endif /* __SPC700DS_H__ */
|