赞
踩
功能描述
module top_module (
input d,
input ena,
output q);
assign q=(ena)?d:q;
endmodule
生成电路
module top_module (
input d,
input ena,
output reg q);
always @(*)begin
q <= (ena) ? d : q;
end
endmodule
生成电路
module top_module (
input d,
input ena,
output reg q);
always @(*)begin
q = (ena) ? d : q;
end
endmodule
生成电路
可以看出上述3种描述方式生成最终电路是相同的。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。