summaryrefslogtreecommitdiffstats
path: root/FFT_Test/fft.hch
diff options
context:
space:
mode:
authorMarcel Lauwerijssen <paranoya@morphcore.com>2004-11-24 16:20:29 (GMT)
committerMarcel Lauwerijssen <paranoya@morphcore.com>2004-11-24 16:20:29 (GMT)
commit9893489d45b1cdb284f42231a8407fe34cf0b0f3 (patch)
tree042d300511f8fa852f6523a8e112507848eb2bf5 /FFT_Test/fft.hch
parentcd46168714594a56b173bb394af49f2c5f8fecde (diff)
downloadTASS-9893489d45b1cdb284f42231a8407fe34cf0b0f3.zip
TASS-9893489d45b1cdb284f42231a8407fe34cf0b0f3.tar.gz
TASS-9893489d45b1cdb284f42231a8407fe34cf0b0f3.tar.bz2
prepared multiple clockdomains
Diffstat (limited to 'FFT_Test/fft.hch')
-rw-r--r--FFT_Test/fft.hch8
1 files changed, 7 insertions, 1 deletions
diff --git a/FFT_Test/fft.hch b/FFT_Test/fft.hch
index 87d54e7..e44e32b 100644
--- a/FFT_Test/fft.hch
+++ b/FFT_Test/fft.hch
@@ -5,4 +5,10 @@ void perform_ifft(signed 18 *modified_audio ,unsigned 6 *ifft_info);
void perform_fft(signed 16 *pcm_audio);
void perform_ifft(signed 16 *modified_audio ,unsigned 6 *ifft_info);
#endif
-void equalize_audio(unsigned 4 *eq_level, unsigned 7 *fft_info);
+void equalize_audio(audiodata_t *audiodata);
+
+mpram DualPortRam
+{
+ ram signed 18 audio_io[256];
+ ram signed 18 fft[256];
+};