mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-24 23:21:31 -04:00
17 lines
372 B
C++
17 lines
372 B
C++
#ifndef JASDRIVERTABLES_H
|
|
#define JASDRIVERTABLES_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
namespace JASystem {
|
|
namespace Driver {
|
|
extern f32 C5BASE_PITCHTABLE[];
|
|
}
|
|
namespace DSPInterface {
|
|
extern u16 DSPADPCM_FILTER[] __attribute__((aligned(32)));
|
|
extern u16 DSPRES_FILTER[] __attribute__((aligned(32)));
|
|
}
|
|
}
|
|
|
|
#endif /* JASDRIVERTABLES_H */
|