File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8383from .blocks .aes .aes import Aes
8484from .blocks .axicrossbar .axicrossbar import Axicrossbar
8585from .blocks .ethmac .ethmac import Ethmac
86+ from .blocks .fft .fft import Fft
87+ from .blocks .firfix .firfix import Firfix
88+ from .blocks .firprog .firprog import Firprog
8689from .blocks .ialu .ialu import Ialu
8790from .blocks .i2c .i2c import I2c
8891from .blocks .lfsr .lfsr import Lfsr
Original file line number Diff line number Diff line change @@ -38,6 +38,8 @@ module fft
3838 reg [LOG2N:0 ] output_count;
3939 reg processing;
4040
41+ // static look up table
42+ reg signed [DW- 1 :0 ] sine_lut [0 :255 ];
4143
4244 integer i;
4345
@@ -144,8 +146,6 @@ module fft
144146 end
145147 endfunction
146148
147- reg signed [DW- 1 :0 ] sine_lut [0 :255 ];
148-
149149 initial
150150 begin
151151 sine_lut[0 ] = 16 'sd0;
Original file line number Diff line number Diff line change 22from siliconcompiler .design import DesignSchema
33
44
5- class Fir (DesignSchema ):
5+ class Firfix (DesignSchema ):
66 def __init__ (self ):
77
88 name = 'firfix'
Original file line number Diff line number Diff line change 22from siliconcompiler .design import DesignSchema
33
44
5- class Fir (DesignSchema ):
5+ class Firprog (DesignSchema ):
66 def __init__ (self ):
77
88 name = 'firprog'
Original file line number Diff line number Diff line change 11/****************************************************************************
22 * LICENSE: MIT (see ../../../../LICENSE)
3- * AUTHOR: LogikBench authors
3+ * AUTHOR: LogikBench Authors
44 ****************************************************************************
55 * DESCRIPTION:
66 *
Original file line number Diff line number Diff line change 7474block_list = [Aes (),
7575 Axicrossbar (),
7676 Ethmac (),
77+ Firfix (),
78+ Firprog (),
7779 Ialu (),
7880 I2c (),
7981 Lfsr (),
You can’t perform that action at this time.
0 commit comments