SublimeLinter-contrib-xsim
Vivado Simulator (XSim) xvlog/xvhdl plugin for SublimeLinter. Linting for Verilog/SystemVerilog and VHDL.
Details
Installs
- Total 502
- Win 417
- Mac 18
- Linux 67
| Mar 4 | Mar 3 | Mar 2 | Mar 1 | Feb 28 | Feb 27 | Feb 26 | Feb 25 | Feb 24 | Feb 23 | Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 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 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 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 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 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 |
Readme
- Source
- raw.githubusercontent.com
SublimeLinter-contrib-xsim
This linter plugin for SublimeLinter provides an interface to xvlog/xvhdl - Verilog/SystemVerilog/VHDL compilers provided with Vivado Simulator (XSim). xvlog will be used with “Verilog” and “SystemVerilog” files , xvhdl with “VHDL” files.
Installation
SublimeLinter must be installed in order to use this plugin.
Please use Package Control to install the linter plugin.
Before installing this plugin, you must ensure that xvlog/xvhdl are installed on your system. Once you install Vivado Design Suite, they will be in the directory PATH_TO_VIVADO/VIVADO_VERSION/bin.
In order for xvlog/xvhdl to be executed by SublimeLinter, you must ensure that its path is available to SublimeLinter. The docs cover troubleshooting PATH configuration.
Verilog/SystemVerilog/VHDL syntax highlight is not natively supplied by Sublime Text. You may install Sublime Text Verilog, Sublime Text SystemVerilog and Sublime Text VHDL Mode to do the job.
Settings
- SublimeLinter settings: http://sublimelinter.readthedocs.org/en/latest/settings.html
- Linter settings: http://sublimelinter.readthedocs.org/en/latest/linter_settings.html
Passing arguments to xvlog/xvlog_sv/xvhdl
Arguments can be passed in a linter settings file or set in a project settings file:
- Using linter settings file:
// SublimeLinter Settings - User
{
"linters": {
"xvlog": {
"args": ["--relax"],
"working_dir": "${TEMP:${project_path:${folder:$file_path}}}",
},
"xvlog_sv": {
"args": ["--relax"],
"working_dir": "${TEMP:${project_path:${folder:$file_path}}}",
},
"xvhdl": {
"args": ["--relax"],
"working_dir": "${TEMP:${project_path:${folder:$file_path}}}",
}
},
}
Using Project specific settings:
// .sublime-project { "folders": [ { "path": "." } ], "settings": { // SublimeLinter-contrib-xsim "SublimeLinter.linters.xvlog.args":[ "-i", "$project_path/PATH_TO_HEADER_0", "-i", "$project_path/PATH_TO_HEADER_1", "--relax" ], "SublimeLinter.linters.xvlog_sv.args":[ "-i", "$project_path/PATH_TO_HEADER_0", "-i", "$project_path/PATH_TO_HEADER_1", "--relax" ], "SublimeLinter.linters.xvhdl.args":[ "--relax" ] } }
It is recommended to use project specific settings when using
xvlogwith-i [include] <directory_name>command option.Remarks
xvlog_svis equal toxvlogwith--svcommand option on, which is specifically made for SystemVerilog files.argsis command option passed toxvlog/xvhdl--relax: Relax strict HDL language checking rules, which is default settting of Vivado.-i: Specify directories to be searched for files included using Verilog`include. Use-i|--includefor each specified search directory- For more information please check UG900, or using
xvlog/xvhdl --help.
work_diris working directoryxvlog/xvhdl- Since
.dir.log.pbfolders or files will be generated in working directory, so I set$TEMP(i.e. temporary directory in Operating System) as working directory, whenTEMPis not exist, the following directory will be selected.
- Since
Demo
xvlog for Verilog file:

xvlog_sv for SystemVerilog file

xvhdl for VHDL file
