Verilog中如何调用子程序

2024-11-14 17:41:38
推荐回答(1个)
回答1:

例化。
比如:模块1
module A(
input a,
input b,
output c);
assign c = a &b;
endmodule
模块2调用模块1:
module(
input d,
input e,
output f

);
wire c1;

A A_inst(
.a(d),
.b(e),
.c(c1)

);
assign f = c1 + 'b1;
endmodule