File: bufifab.v

package info (click to toggle)
iverilog 12.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 30,148 kB
  • sloc: cpp: 109,972; ansic: 62,713; yacc: 10,216; sh: 3,470; vhdl: 3,246; perl: 1,814; makefile: 1,774; python: 78; csh: 2
file content (6 lines) | stat: -rw-r--r-- 121 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
module bufifab (output Out0, output Out1, input I, input E);

   bufif0 (Out0, I, E);
   bufif1 (Out1, I, E);

endmodule