File: 44_create.out

package info (click to toggle)
libverilog-perl 3.482-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,728 kB
  • sloc: perl: 8,685; yacc: 3,387; cpp: 2,266; lex: 1,502; makefile: 8; fortran: 3
file content (7 lines) | stat: -rw-r--r-- 99 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
module a (
   x, y);
   input [2:0] x;
   output [2:0] y;
   b i_b (.w(y[2:0]), .z(x));
endmodule