Behavioral Modeling. module not_beh(c,a); input a; output c; reg c; always@(a) begin if (a==0) c=1; else c=0; end endmodule. Test Bench.
確定! 回上一頁