summaryrefslogtreecommitdiffstats
path: root/FFT_Test/fft.hch
diff options
context:
space:
mode:
authorMarcel Lauwerijssen <paranoya@morphcore.com>2004-11-25 11:09:45 (GMT)
committerMarcel Lauwerijssen <paranoya@morphcore.com>2004-11-25 11:09:45 (GMT)
commit8ccc61f9fae80ff1eeb70bf14e996c61df1fd890 (patch)
tree5fd14ee25096080ae8cdef12d847fcd94cb20dd0 /FFT_Test/fft.hch
parent67c4817e31ec7a391e7fb2de118841f3bcc9edeb (diff)
downloadTASS-8ccc61f9fae80ff1eeb70bf14e996c61df1fd890.zip
TASS-8ccc61f9fae80ff1eeb70bf14e996c61df1fd890.tar.gz
TASS-8ccc61f9fae80ff1eeb70bf14e996c61df1fd890.tar.bz2
Further preparations for splitting up the audio I/O component and FFT component into 2 separate 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 e44e32b..a9a46a5 100644
--- a/FFT_Test/fft.hch
+++ b/FFT_Test/fft.hch
@@ -7,8 +7,14 @@ void perform_ifft(signed 16 *modified_audio ,unsigned 6 *ifft_info);
#endif
void equalize_audio(audiodata_t *audiodata);
-mpram DualPortRam
+mpram DualPortInputRam
{
ram signed 18 audio_io[256];
ram signed 18 fft[256];
};
+
+mpram DualPortOutputRam
+{
+ ram signed 18 audio_io[128];
+ ram signed 18 fft[128];
+};