Verilog中如何调用子程序

2024年11月14日 17:41
有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