Variable: vhdl-reset-kind

vhdl-reset-kind is a customizable variable defined in vhdl-mode.el.gz.

Value

async

Documentation

Specifies which kind of reset to use in sequential processes.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defcustom vhdl-reset-kind 'async
  "Specifies which kind of reset to use in sequential processes."
  :type '(choice (const :tag "None" none)
		 (const :tag "Synchronous" sync)
		 (const :tag "Asynchronous" async)
		 (const :tag "Query" query))
  :group 'vhdl-sequential-process)