經安全檢測,此網站為安全網站,請放心前往原始網址!

verilog code for two input logic gates and test bench | VLSI For You

module basicgate(a, b, c); input a; input b; output [6:0] c; --[6:0]c/ c,d,e,f,g,h,i and(c[0],a,b); or(c[1],a,b); not(c[2],a); nand(c[3],a,b); nor(c[4],a,b); xor(c[5],a,b); xnor(c[6],a,b); endmodule TEST BENCH module gatest_v; reg a; reg b; wire [6:0 ...

vlsimaster.wordpress.com

網址安全性掃描由 google 提供