--- Quote Start ---
I am an undergraduate student. I am currently working on a project on implementing a fft core on an fpga and using it to do the calculations for a microcontroller 8051. The problem i am facing is that i have no clue how to go with the interfacing of the 8051 with altera de1( this is the fpga i am using).
Any kind of suggestion or reference to some reading material will be highly appreciated. thank you...
--- Quote End ---
There are a couple of options;
1. Use the UART on the 8051 to talk to a UART on the DE1 board. If the DE1 has RS232 transceivers, then you can attach a DB9 serial cable between the boards. If neither board has RS232 transceivers, then you can connect 3.3V logic level UART signals together. If the 8051 is 5V output, then you need to check whether the FPGA signals have 5V protection.
2. Use an SPI interface. The 8051 would be the SPI master, while the FPGA would be the slave. Again, you need to check that the 8051 output voltages are compatible with the FPGA.
Cheers,
Dave