01-10-2010 12:39 AM
Hi.........
I am M.Sc. student and have an project JPEG/Inverse JPEG processor using FPGA.
I need to use SRAM becuase it's size suitable for store image...
If any one have papers or source code about it ..please send to me
01-11-2010 04:00 AM
You can build such an edk system with the help of reference design ML505_BSB_Design_Creation available at http://www.xilinx.com/products/boards/ml505/ml505_11.1_1/bsb.htm
and for reading and writing SRAM, you can use the following functions in the software program:
#define XIo_In8(InputPtr)
#define XIo_In16(InputPtr)
#define XIo_In32(InputPtr)
#define XIo_Out8(OutputPtr, Value)
#define XIo_Out16(OutputPtr, Value)
#define XIo_Out32(OutputPtr, Value)
For detailed description of these functions please refer xio.h file.
Good luck