1 Star 0 Fork 1

哈哈哈/gaussfilter_FPGA

forked from EatonL/gaussfilter_FPGA 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
D.v.bak 800 Bytes
一键复制 编辑 原始数据 按行查看 历史
EatonL 提交于 2017-11-29 14:27 . gauss
module D(clk,rst,ina,inb,inc,outa,outb,outc,outa1,outa2,outb1,outb2,outc1,outc1,outc2)
input clk,rst;
input reg [7:0] ina,inb,inc;
output reg [7:0] outa,outb,outc;
output reg [7:0] outa1,outa2,outb1,outb2,outc1,outc1,outc2;
always@(posedge clk or negedge rst)
begin
if(!rst)
outa1<=8'b0;
else
outa1<=ina;
end
always@(posedge clk or negedge rst)
begin
if(!rst)
outa2<=8'b0;
else
outa2<=outa1;
end
always@(posedge clk or negedge rst)
begin
if(!rst)
outb1<=8'b0;
else
outb2<=inb;
end
always@(posedge clk or negedge rst)
begin
if(!rst)
outb2<=8'b0;
else
outb2<=outb1;
end
always@(posedge clk or negedge rst)
begin
if(!rst)
outc1<=8'b0;
else
outc1<=inc;
end
always@(posedge clk or negedge rst)
begin
if(!rst)
outc2<=8'b0;
else
outc2<=outc1;
end
assign outa=ina;
assign outb=inb;
assign outc=inc;
endmodule
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Verilog
1
https://gitee.com/hqpas/gaussfilter_FPGA.git
git@gitee.com:hqpas/gaussfilter_FPGA.git
hqpas
gaussfilter_FPGA
gaussfilter_FPGA
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385