Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hankhsu1996/vscode-systemverilog-completion
https://github.com/hankhsu1996/vscode-systemverilog-completion
Last synced: about 16 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/hankhsu1996/vscode-systemverilog-completion
- Owner: hankhsu1996
- License: mit
- Created: 2022-05-26T13:44:05.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-30T07:21:37.000Z (about 2 years ago)
- Last Synced: 2023-10-20T09:45:17.900Z (about 1 year ago)
- Language: ANTLR
- Size: 3.65 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# SystemVerilog Completion
SystemVerilog Completion is a VS Code extension providing automatic word-completion and abbreviation expansion for SystemVerilog.
The SystemVerilog syntax is based on IEEE Std 1800-2017.
## Features
### Keywords Completion
The extension provides context-awared keywords completion. For example, when you are closing a module, the extension will only suggest `endmodule` keyword.
![](resources/keywords.gif)
### System Tasks and System Functions Completion
The extension provides utility system tasks and system functions completion, including:
- Simulation control system tasks, such as `$finish` and `$stop`
- Conversion system function, such as `$signed` and `$cast`
- Data query system functions, such as `$bits`
- Array query system functions, such as `$size`
- Math system functions, such as `$clog2` and `$pow`
- Bit vector system functions, such as `$onehot` and `$isunknown`
- Assertion control system tasks, such as `$assertcontrol`
- Probability distribution system functions, such as `$random` and `$dist_normal`![](resources/util_sys_task_funcs.gif)
The extension provides I/O system tasks and system functions completion, including:
- Display system tasks, such as `$display` and `$write`
- File I/O system tasks, such as `$fopen` and `$fwrite`
- Memory load system tasks, such as `$readmemh` and `$readmemb`
- Command line I/O system functions, such as `$test$plusargs` and `$value$plusargs`
- VCD file I/O system tasks, such as `$dumpfile`![](resources/io_sys_task_funcs.gif)
### Timing Checks Completion
The extension provides timing checks completion, including `$setup`, `$hold`, etc.
### Compiler Directives Completion
The extension provides compiler directives completion, including `` `define ``, `` `include ``, etc.
## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
## License
[MIT](LICENSE.md)