comparison src/console/Spc_Cpu.h @ 316:fb513e10174e trunk

[svn] - merge libconsole-blargg into mainline libconsole: + obsoletes plugins-ugly:sapplug
author nenolod
date Thu, 30 Nov 2006 19:54:33 -0800
parents 3da1b8942b8b
children 986f098da058
comparison
equal deleted inserted replaced
315:2294f3a6f136 316:fb513e10174e
1
2 // Super Nintendo (SNES) SPC-700 CPU emulator 1 // Super Nintendo (SNES) SPC-700 CPU emulator
3 2
4 // Game_Music_Emu 0.3.0 3 // Game_Music_Emu 0.5.1
5
6 #ifndef SPC_CPU_H 4 #ifndef SPC_CPU_H
7 #define SPC_CPU_H 5 #define SPC_CPU_H
8 6
9 #include "blargg_common.h" 7 #include "blargg_common.h"
10 8
11 typedef unsigned spc_addr_t; 9 typedef unsigned spc_addr_t;
12 typedef long spc_time_t; 10 typedef blargg_long spc_time_t;
13 11
14 class Snes_Spc; 12 class Snes_Spc;
15 13
16 class Spc_Cpu { 14 class Spc_Cpu {
17 typedef BOOST::uint8_t uint8_t; 15 typedef BOOST::uint8_t uint8_t;
55 }; 53 };
56 54
57 inline spc_time_t Spc_Cpu::remain() const { return remain_; } 55 inline spc_time_t Spc_Cpu::remain() const { return remain_; }
58 56
59 #endif 57 #endif
60