v_comments.v

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

V
19
字号
`define ThirtyTwo 32module v_comments ( a,                // Pragma for a		    b,                // pragma for b		    c,		    d, d1, d2, d3 );   input a;                     // comment for a   inout [10:0] b;   output [0:10] c;             // comment for c   output [ ((2*`ThirtyTwo) - 1) : 0 ] d;   output [ `ThirtyTwo : 0 ] d1;   output [ ( MATH - 1 ): 0 ] d2;   output [ `ThirtyTwo - 1: 0 ] d3;   reg           d;   reg [11:0]    e;             // Comment for eendmodule

⌨️ 快捷键说明

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