The following are sample CORE Generator coefficient (.coe) files for FIR Filters, Distributed ROM and RAM, and Virtex Block Memory.
The sample COE files may also be found in your CORE Generator installation under the $XILINX\coregen\data directory.
ソリューション
SDA FIR Filter:
Component_Name=sdafir;
Number_Of_Taps=6;
Radix=10;
Input_Width=10;
Output_Width=24;
Coefficient_Width=11;
Impulse_Response_Symmetry = false;
CoefData= -1,18,122,418,-40,3;
Here is a brief explanation of the keywords in the coefficient file:
Component_name: Declares the name of the component.
Number_of_taps: Specifies the number of taps.
Radix: Specifies the base of the coefficient.
(Radix=10 indicates that the coefficients are in base 10 (decimal) format;
Radix=16 indicates that the coefficient is in hexadecimal.)
Input_width: Specifies the input data width.
Output_width: Specifies the output data width.
Coefficient_width: Specifies the output width.
Impulse_Response_Symmetry: Specifies the symmetry of the filter. "TRUE" indicates that the filter coefficients are symmetrical; "FALSE" means they are asymmetrical.
Coef_Data: Value of the coefficients
For more information, please refer to the specification sheets for the FIR filters.