mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-23 06:54:16 -04:00
18 lines
364 B
C++
18 lines
364 B
C++
#ifndef JASDRIVERTABLES_H
|
|
#define JASDRIVERTABLES_H
|
|
|
|
#include "dolphin/types.h"
|
|
#include "global.h"
|
|
|
|
namespace JASystem {
|
|
namespace Driver {
|
|
extern f32 C5BASE_PITCHTABLE[];
|
|
}
|
|
namespace DSPInterface {
|
|
extern u16 DSPADPCM_FILTER[] ALIGN_DECL(32);
|
|
extern u16 DSPRES_FILTER[] ALIGN_DECL(32);
|
|
}
|
|
}
|
|
|
|
#endif /* JASDRIVERTABLES_H */
|