summaryrefslogtreecommitdiff
path: root/cad/dinotrace-mode/MESSAGE
diff options
context:
space:
mode:
authordmcmahill <dmcmahill@pkgsrc.org>2003-04-21 02:08:59 +0000
committerdmcmahill <dmcmahill@pkgsrc.org>2003-04-21 02:08:59 +0000
commit35755e4d5cfe811a52034f05690c1120ea872590 (patch)
tree6edfb81e61c6b4c36cfa31d2c9bb492692275ee1 /cad/dinotrace-mode/MESSAGE
parent9794a404b17a615089e45d8607fb6d2ca004011f (diff)
downloadpkgsrc-35755e4d5cfe811a52034f05690c1120ea872590.tar.gz
import dinotrace-mode-9.1i
This is an emacs major mode for linking verilog code with simulation results and the Dinotrace waveform viewer.
Diffstat (limited to 'cad/dinotrace-mode/MESSAGE')
-rw-r--r--cad/dinotrace-mode/MESSAGE23
1 files changed, 23 insertions, 0 deletions
diff --git a/cad/dinotrace-mode/MESSAGE b/cad/dinotrace-mode/MESSAGE
new file mode 100644
index 00000000000..2f4f302018a
--- /dev/null
+++ b/cad/dinotrace-mode/MESSAGE
@@ -0,0 +1,23 @@
+===========================================================================
+$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: ***
+
+===========================================================================