1 |
5 |
eyalhoc |
<##//////////////////////////////////////////////////////////////////
|
2 |
|
|
//// ////
|
3 |
|
|
//// Author: Eyal Hochberg ////
|
4 |
|
|
//// eyal@provartec.com ////
|
5 |
|
|
//// ////
|
6 |
|
|
//// Downloaded from: http://www.opencores.org ////
|
7 |
|
|
/////////////////////////////////////////////////////////////////////
|
8 |
|
|
//// ////
|
9 |
|
|
//// Copyright (C) 2010 Provartec LTD ////
|
10 |
|
|
//// www.provartec.com ////
|
11 |
|
|
//// info@provartec.com ////
|
12 |
|
|
//// ////
|
13 |
|
|
//// This source file may be used and distributed without ////
|
14 |
|
|
//// restriction provided that this copyright statement is not ////
|
15 |
|
|
//// removed from the file and that any derivative work contains ////
|
16 |
|
|
//// the original copyright notice and the associated disclaimer.////
|
17 |
|
|
//// ////
|
18 |
|
|
//// This source file is free software; you can redistribute it ////
|
19 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
20 |
|
|
//// Public License as published by the Free Software Foundation.////
|
21 |
|
|
//// ////
|
22 |
|
|
//// This source is distributed in the hope that it will be ////
|
23 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
24 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
25 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more////
|
26 |
|
|
//// details. http://www.gnu.org/licenses/lgpl.html ////
|
27 |
|
|
//// ////
|
28 |
|
|
//////////////////////////////////////////////////////////////////##>
|
29 |
|
|
|
30 |
2 |
eyalhoc |
INCLUDE def_fir_basic.txt
|
31 |
|
|
|
32 |
|
|
##check all input parameters have been given
|
33 |
|
|
CHECK CONST(MAC_NUM)
|
34 |
|
|
|
35 |
|
|
SWAP SON_DELAY EXPR(COEFF_NUM/MAC_NUM) ##input delay per son
|
36 |
|
|
SWAP SON_COEFF MAC_NUM ##number of son coefficients
|
37 |
|
|
SWAP SON_STAGES LOG2(SON_DELAY) ##number of binary tree adder stages
|
38 |
|
|
SWAP SON_DOUT EXPR(MULT_BITS+SON_STAGES) ##bits of son output
|
39 |
|
|
SWAP ADD_DOUT EXPR(SON_DOUT+LOG2(MAC_NUM)) ##bits of adder output
|
40 |
|
|
|
41 |
13 |
eyalhoc |
VERIFY(EXPR(COEFF_NUM%MAC_NUM)==0) ##MAC number (multiplayers) must be a division of the coefficient number (FIR order+1)
|
42 |
|
|
VERIFY(MAC_NUM>1) ##MAC number must be larger than 1 (try using fir_serial.v)
|
43 |
|
|
VERIFY(MAC_NUM
|
44 |
2 |
eyalhoc |
|