?? fpga_loader.c
字號(hào):
/*
* Copyright 2003 by Spectrum Digital Incorporated.
* All rights reserved. Property of Spectrum Digital Incorporated.
*/
/*
* ======== fpga_loader.c ========
*
* This program loads the Xilinx FPGA on the DM642 EVM with configuration
* data stored in Flash at 0x90040000.
*/
#include "fpga_loadercfg.h"
#include "evmdm642.h"
main()
{
/* Call BSL init */
EVMDM642_init();
/* Load FPGA from Flash */
EVMDM642_fpgaLoad(0x90040000);
/* Disable interrupts */
IRQ_globalDisable();
while(1);
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -