Hi everybody I have used an example problem and used my functions to place in the ram after calling it main , it isnt working..........(Iam working on ADuC7026 processor). #define MUL_hi(a, b) ((a*b)>>16) #define MAC2_hi(a, b, c, d) ((a*b + c*d)>>16) inline void fft_rescramble(int * x_vector, const int LENGTH); register unsigned int R15 asm ("pc"); void Ram_Function(int *end) __attribute__ ((section (".fft_ifft_func"))); void fpfft(int * X_real, int * X_imag, int * x); void fpifft(int * x, int * X_real, int * X_imag); void Ram_Function(int *in_buf) { int X_re[256],X_im[256],re[256]; fpfft(X_re,X_im,in_buf); fpifft(re,X_re,X_im); } Thanks Hameed
View all questions in Keil forum