fpga_loader.c
上传用户:dahaojd
上传日期:2008-01-29
资源大小:14357k
文件大小:1k
源码类别:

DSP编程

开发平台:

C/C++

  1. /*
  2.  *  Copyright 2003 by Spectrum Digital Incorporated.
  3.  *  All rights reserved. Property of Spectrum Digital Incorporated.
  4.  */
  5. /*
  6.  *  ======== fpga_loader.c ========
  7.  *
  8.  *  This program loads the Xilinx FPGA on the DM642 EVM with configuration
  9.  *  data stored in Flash at 0x90040000.
  10.  */
  11. #include "fpga_loadercfg.h"
  12. #include "evmdm642.h"
  13. main()
  14. {
  15.     /* Call BSL init */
  16.     EVMDM642_init();
  17.     /* Load FPGA from Flash */
  18.     EVMDM642_fpgaLoad(0x90040000);
  19.     
  20.     /* Disable interrupts */
  21.     IRQ_globalDisable();
  22.     while(1);
  23. }