z390-mode Code
Brought to you by:
olexandr_syd
File | Date | Author | Commit |
---|---|---|---|
ChangeLog | 2007-09-20 | olexandr_syd | [r2] added asm390prn-mode.el - prn viewer |
NOTES | 2007-09-20 | olexandr_syd | [r2] added asm390prn-mode.el - prn viewer |
README | 2007-11-19 | olexandr_syd | [r5] cleaning, readme added |
asm390-mode.el | 2007-12-18 | olexandr_syd | [r8] cleaning |
asm390.by | 2007-12-18 | olexandr_syd | [r8] cleaning |
asm390prn-mode.el | 2007-12-18 | olexandr_syd | [r8] cleaning |
optoby | 2007-12-18 | olexandr_syd | [r8] cleaning |
semantic-asm390-by.el | 2007-12-18 | olexandr_syd | [r8] cleaning |
semantic-asm390.el | 2007-11-19 | olexandr_syd | [r4] semantic idle scheduler |
z390oc | 2007-11-20 | olexandr_syd | [r7] semantic idle scheduler |
-*- outline -*- * EMACS'S MODES For asm source code you can use asm390-mode.el For .prn --- asm390prn-mode.el Put these files into your load-path and the following into your ~/.emacs: (autoload 'asm390-mode "asm390-mode" "Major mode for asm z390 files" t) (setq auto-mode-alist (cons '("\\.mlc" . asm390-mode) auto-mode-alist)) (autoload 'asm390prn-mode "asm390prn-mode" "Major mode for prn z390 files" t) (setq auto-mode-alist (cons '("\\.prn" . asm390prn-mode) auto-mode-alist)) * SEMANTIC You can use semantic's (that is a part of CEDET http://cedet.sf.net) idle scheduler. For this put into your ~/.emacs: (require 'semantic-asm390)