blob: 8d9c42a4200056054b4c4f7b92f1034470b7a153 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef JASCALC_H
#define JASCALC_H
#include "dolphin/types.h"
namespace JASystem {
namespace Calc {
void initSinfT();
f32 sinfT(f32);
f32 sinfDolby2(f32);
void imixcopy(const s16*, const s16*, s16*, s32);
void bcopyfast(const u32*, u32*, u32);
void bcopy(const void*, void*, u32);
void bzerofast(void*, u32);
void bzero(void*, u32);
extern f32* JASC_SINTABLE;
extern f32* JASC_DOL2TABLE;
}
}
#endif /* JASCALC_H */
|