test.v

来自「Verilog Parser in Perl」· Verilog 代码 · 共 30 行

V
30
字号
// DESCRIPTION: Verilog-Perl: Example Verilog for testing package// This file ONLY is placed into the Public Domain, for any use,// without warranty, 2000-2009 by Wilson Snyder.// ENCRYPT_MEmodule example (/*AUTOARG*/   // Outputs   z,   // Inputs   a, b   );   // See http://www.veripool.org   // for what AUTOARG and friends can do for you!   /*Comment // test*/   //   input a;   input b;   output z;   wire result = a|b;   wire z = result;endmodule

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?