Variable: verilog-simulator

verilog-simulator is a customizable variable defined in verilog-mode.el.gz.

Value

"echo 'No verilog-simulator set, see \"M-x describe-variable verilog-simulator\"'"

Documentation

Program and arguments to use to interpret Verilog source.

Depending on the verilog-set-compile-command, this may be invoked when you type M-x compile (compile). When the compile completes, C-x ` (next-error) will take you to the next lint error.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
;; We don't mark it safe, as it's used as a shell command

(defcustom verilog-simulator
  "echo 'No verilog-simulator set, see \"M-x describe-variable verilog-simulator\"'"
  "Program and arguments to use to interpret Verilog source.
Depending on the `verilog-set-compile-command', this may be invoked when
you type \\[compile].  When the compile completes, \\[next-error] will take
you to the next lint error."
  :type 'string
  :group 'verilog-mode-actions)