summaryrefslogtreecommitdiffstats
path: root/FFT_Test/fft.hch
diff options
context:
space:
mode:
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];
+};