糟糕蜜粉

文章
3
资源
0
加入时间
2年10月24天

FPGA代码练习

01、8位加法器功能代码module adder_8 ( cout,sum,a,b,cin );input [7:0] a,b;input cin;output cout;output [7:0] sum;assign {cout,sum} = a + b + cin;endmodule2、8位计数器功能代码module counter(out,clk,enable,rst);output[7:0] out;input clk, rst, enable;reg[