Questions tagged [verilog]
The verilog tag has no summary.
7 questions
1 vote
0 answers
24 views
how to see full error message from emacs verilog-batch-auto
This question was ported over from here: I am using the following command line to run the auto processing on a verilog file: emacs -batch file.v -f verilog-batch-auto; When I get the error, it is not ...
0 votes
1 answer
177 views
I am not getting desired output using this auto template in Emacs verilog-mode, i am using this from veripool.org . What mistakes i am doing in code?
I have 1 top module and 1 submodule and i want to autoinst using auto template and regex, my modules are:- module submodule ( input [31:0] in_data, input in_valid, ...
0 votes
3 answers
836 views
Verilog mode to navigate from begin to end
I am using verilog mode for Emacs. I am trying to find which begin is paired with which end. Is there any way to do this in Emacs?
2 votes
2 answers
696 views
Disable "Autocompletion"/"Abbreviation" in Verilog-Mode
When I use the Verilog Mode in spacemacs with evil keybindings, every time I type e.g. wire and press ESC, an automatic dialouge pops up and asks me msb:, lsb: and name (RET to end). This is super ...
2 votes
1 answer
797 views
Redefine verilog-mode header skeleton
The verilog-mode package contains this code: (define-skeleton verilog-sk-header-tmpl "Insert a comment block containing the module title, author, etc." "[Description]: " "// ...
4 votes
2 answers
775 views
Configure indentation logic to ignore certain lines?
I am using outshine to organize my code (verilog/systemverilog language). Here is an example use: // * Class definition class my_class extends my_base_class; // code .. // ** Task 1 ...
7 votes
4 answers
827 views
How do I disable ffap (find file at point) when the first two non-space characters in a line are '//'?
In Verilog/C/C++, comments can begin with //. Here's an example comment, //This is a comment I like to use the find-file-at-point feature. If my cursor is on the file name in `include "some_file.v". ...