35755e4d5c
This is an emacs major mode for linking verilog code with simulation results and the Dinotrace waveform viewer.
23 lines
982 B
Text
23 lines
982 B
Text
===========================================================================
|
|
$NetBSD: MESSAGE,v 1.1.1.1 2003/04/21 02:08:59 dmcmahill Exp $
|
|
|
|
You will need to add something like the following to your .emacs.el (or
|
|
default.el) file to autoload Dinotrace mode for Emacs.
|
|
|
|
;; Dinotrace mode
|
|
(autoload 'dinotrace-update "dinotrace" "Update dinotrace annotations in this buffer" t)
|
|
(autoload 'dinotrace-mode "dinotrace" "Toggle dinotrace annotations in this buffer" t)
|
|
(global-set-key "\C-x\C-aa" 'dinotrace-update)
|
|
(global-set-key "\C-x\C-ad" 'dinotrace-mode)
|
|
|
|
;; Sim-Log mode
|
|
(autoload 'sim-log-mode "sim-log" "Mode for Simulation Log files." t)
|
|
(setq auto-mode-alist (append (list '("\\.log$" . sim-log-mode)) auto-mode-alist))
|
|
|
|
;; If you do not wish to bind all .log files to this mode, then make sure the
|
|
;; last lines of your log files contain:
|
|
;;; Local Variables: ***
|
|
;;; mode:sim-log ***
|
|
;;; End: ***
|
|
|
|
===========================================================================
|