├── .idea ├── .name ├── data_source.iml ├── encodings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── coef.txt ├── fir_impl.py ├── out.txt ├── output.txt ├── pic ├── 1.jpg ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png ├── 9.png ├── a1.png ├── a10.png ├── a2.png ├── a3.png ├── a4.png ├── a5.gif ├── a6.png ├── a9.png ├── bj8yj.gif └── logo.png ├── signal.txt └── verilog ├── LICENSE ├── README.MD ├── cos.txt ├── fir_base.v ├── fir_coef.v ├── fir_inst.v └── tb_fir.v /.idea/.name: -------------------------------------------------------------------------------- 1 | data_source -------------------------------------------------------------------------------- /.idea/data_source.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/.idea/data_source.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/README.md -------------------------------------------------------------------------------- /coef.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/coef.txt -------------------------------------------------------------------------------- /fir_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/fir_impl.py -------------------------------------------------------------------------------- /out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/out.txt -------------------------------------------------------------------------------- /output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/output.txt -------------------------------------------------------------------------------- /pic/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/pic/1.jpg -------------------------------------------------------------------------------- /pic/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/pic/1.png -------------------------------------------------------------------------------- /pic/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/pic/2.png -------------------------------------------------------------------------------- /pic/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/pic/3.png -------------------------------------------------------------------------------- /pic/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/pic/4.png -------------------------------------------------------------------------------- /pic/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/pic/5.png -------------------------------------------------------------------------------- /pic/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/pic/6.png -------------------------------------------------------------------------------- /pic/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/pic/7.png -------------------------------------------------------------------------------- /pic/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/pic/8.png -------------------------------------------------------------------------------- /pic/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/pic/9.png -------------------------------------------------------------------------------- /pic/a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/pic/a1.png -------------------------------------------------------------------------------- /pic/a10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/pic/a10.png -------------------------------------------------------------------------------- /pic/a2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/pic/a2.png -------------------------------------------------------------------------------- /pic/a3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/pic/a3.png -------------------------------------------------------------------------------- /pic/a4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/pic/a4.png -------------------------------------------------------------------------------- /pic/a5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/pic/a5.gif -------------------------------------------------------------------------------- /pic/a6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/pic/a6.png -------------------------------------------------------------------------------- /pic/a9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/pic/a9.png -------------------------------------------------------------------------------- /pic/bj8yj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/pic/bj8yj.gif -------------------------------------------------------------------------------- /pic/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/pic/logo.png -------------------------------------------------------------------------------- /signal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/signal.txt -------------------------------------------------------------------------------- /verilog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/verilog/LICENSE -------------------------------------------------------------------------------- /verilog/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/verilog/README.MD -------------------------------------------------------------------------------- /verilog/cos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/verilog/cos.txt -------------------------------------------------------------------------------- /verilog/fir_base.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/verilog/fir_base.v -------------------------------------------------------------------------------- /verilog/fir_coef.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/verilog/fir_coef.v -------------------------------------------------------------------------------- /verilog/fir_inst.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/verilog/fir_inst.v -------------------------------------------------------------------------------- /verilog/tb_fir.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxs-well/FIR_Implementation/HEAD/verilog/tb_fir.v --------------------------------------------------------------------------------