Function: verilog-auto-logic
verilog-auto-logic is a byte-compiled function defined in
verilog-mode.el.gz.
Signature
(verilog-auto-logic)
Documentation
Expand AUTOLOGIC statements, as part of M-x verilog-auto (verilog-auto).
Make wire statements using the SystemVerilog logic keyword. This is currently equivalent to:
/*AUTOWIRE*/
with the below at the bottom of the file
// Local Variables:
// verilog-auto-wire-type:"logic"
// End:
In the future AUTOLOGIC may declare additional identifiers, while AUTOWIRE will not.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-auto-logic ()
"Expand AUTOLOGIC statements, as part of \\[verilog-auto].
Make wire statements using the SystemVerilog logic keyword.
This is currently equivalent to:
/*AUTOWIRE*/
with the below at the bottom of the file
// Local Variables:
// verilog-auto-wire-type:\"logic\"
// End:
In the future AUTOLOGIC may declare additional identifiers,
while AUTOWIRE will not."
(save-excursion
(verilog-auto-logic-setup)
(verilog-auto-wire)))