Verilog Automatic
Automatically generate verilog module ports,instance and instance connections ,for sublime text 2&3
Details
Installs
- Total 25K
- Win 19K
- Mac 3K
- Linux 4K
Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 2 | 1 | 3 | 1 | 4 | 8 | 5 | 1 | 12 | 4 | 3 | 3 | 2 | 2 | 0 | 1 | 6 | 2 | 1 | 2 | 4 | 4 | 2 | 4 | 2 | 3 | 1 | 5 | 8 | 5 | 0 | 1 | 2 | 2 | 5 | 5 | 3 | 6 | 1 | 4 | 3 | 2 | 8 | 5 | 2 | 3 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 3 | 0 | 1 | 0 | 3 | 1 | 1 | 0 | 0 | 0 | 3 | 0 | 0 | 0 | 0 | 0 | 2 | 1 | 0 | 3 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 2 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 1 | 0 | 2 | 1 | 1 | 0 |
Readme
- Source
- raw.githubusercontent.com
Verilog Automatic
This plugin can automatically add ports to the current editing file, generate module instances (need ctags),add instance connections ,add file header for verilog code. Both verilog-1995 and verilog-2001 style are supported. I borrowed the idea from automatic.vim which is a similar plugin for VIM, I just rewrote one for sublime text2&3.
Features
- AutoPort
- AutoInst
- AutoDef
- AddFileHeader
Description
AutoPort:(shift+f6)
Automatically add ports to the current editing file after the “/autoport/” mark.
NOTE: NOT SUPPORTED STYLE:
input clk,output single_out, //multiple input/output/inout keywords in the same line input clk,rst, chip_en; //multiple signals separated by comma written in different lines
NOTE: Do not use this function when there are multiple modules in the same file.
Example:
Before
(verilog-1995 style):
module test(/*autoport*/);
input [1:0]a;
input b;
output [2:0]c,d;
inout e;
(verilog-2001 style):
module test(/*autoport*/);
input wire[1:0]a;
input wire b;
output reg [2:0]c,d;
inout wire e;
After:
module test(/*autoport*/
//inout
e,
//output
c,
d,
//input
a,
b);
AutoInst:(shift+f7)
Automatically generate module instances after the “/autoinst/” mark (need ctags).
- NOTE:Need to place the cursor on the module name, multiple-cursor supported to generate multiple instances.
Example:
Before:
test test_instance(/*autoinst*/);
After:
Place the cursor on the module name “test”
test test_instance(/*autoinst*/ .e(e), .c(c), .d(d[2:0]), .a(a[1:0]), .b(b));
AutoDef:(shift+f8)
Automatically add instance connections after the /autodef/ mark.
Example:
before:
/*autodef*/
test test_instance(/*autoinst*/
.e(e),
.c(c),
.d(d[2:0]),
.a(a[1:0]),
.b(b));
after:
/*autodef*/
wire e;
wire [2:0]d;
wire c;
wire b;
wire [1:0]a;
//assign e=
//assign d=
//assign c=
//assign b=
//assign a=
test test_instance(/*autoinst*/
.e(e),
.c(c),
.d(d[2:0]),
.a(a[1:0]),
.b(b));
AddFileHeader:(shift+f9)
Add your personal information in the setting file(the user's setting file is better),like below or leave any of them empty:
{
"Author":"Mike",
"Company":"Microsoft",
"Email":"whatever@yahoo.com"
}
thus generates the file header like this:
//==================================================================================================
// Filename : test.v
// Created On : 2013-04-01 21:37:31
// Last Modified :
// Revision :
// Author : Mike
// Company : Microsoft
// Email : whatever@yahoo.com
//
// Description :
//
//
//==================================================================================================
Change log
05/08/2013
Add verilog-2001 style port declaration support.
Add comments support, single line commneted-out code will be ignored.