This major mode provides rudimentary support for editing files containing QBE compiler IL within Emacs. A description of the Intermediate Language syntax can be found here. Currently, only regex-based syntax highlighting is implemented.
Add the following to your packages.el
file:
(package! qbe-mode :recipe (:type git :host github :repo "mbknust/qbe-mode"))
Download qbe-mode.el
and place it somewhere (preferably $HOME/.emacs.d/lisp/
), then:
(add-to-list 'load-path "PATH_TO_QBE_MODE/") (require 'qbe-mode)