This repository contains the source code of the blif_sis package for Sublime Text.
BLIF is SIS' Berkeley Logic Interchange Format.
SIS is a tool that optimizes and simulates logic gate and finite state machine networks
This extension allows you to:
-
Start to develop a .blif file from a template
Currently the included templates are:
sis_fsm
, which is a Finite State Machine templatesis_lgate
, which is a Logic Gate template
Write the name of the template that you want to use and then press the enter key to use the template.
-
Autocomplete keywords (instructions that start with the dot
.
) -
Syntax highlight keywords
Disclaimer:
I'm not affiliated with the SIS nor the Sublime Text developers in any way.
The aim of the extension is to add syntax highlighting and autocompletion for the BLIF format, SIS' Berkeley Logic Interchange Format, to Sublime Text.
-
(best) Install the
package control
package manager for Sublime Text and then install the package:- Click on
Tools > Command Palette
from the toolbar in Sublime Text - Write "
Install Package
" and thePackage Control: Install Package
option should appear below the textbox: click that option - Search for "
blif
" or "sis
" or "blif_sis
". - Click on the
blif_sis
package to install it.
Be sure that the repository (specified below the name of the package) is
https://github.com/mario33881/sublime-blif_sis
- Close and re-open Sublime Text for good measure.
- Click on
-
Manually download this repository, then:
- Go inside the
<data_path>/Packages/
folder (it varies from OS to OS and from the settings chosen during the installation) - Make a folder called "
blif_sis
" - Place inside the directory the content of the repository folder
- Go inside the
-
You can also build the
.sublime-package
file using theMakefile
and themake
command. Then, place the file inside one of these folders:<executable_path>/Packages/ <data_path>/Installed Packages/
If something doesn't work try to execute this on the command palette: (a .blif file must be opened before doing this)
Set Syntax: blif
Templates allow you to develop your .blif file from a basic, common, baseline.
Write the name of the template that you want to use and then press the enter key to use the template.
Start typing to replace the default values. Use the tab key to switch from the currently selected default value to the next one.
Currently the included templates are:
-
sis_fsm
, which is a Finite State Machine template -
sis_lgate
, which is a Logic Gate template
Keyword autocompletion allows you to write keywords efficiently by completing a keyword using the enter key:
-
Start writing a keyword, like
.m
-
The package suggests you all the possible options for autocompletion, use the arrow keys to navigate the options and press enter on the desired autocompletion.
-
If default values follow the keyword, start typing to replace the first value and then use the tab key to move to the next default value (if available).
You can repeat this operation (tab key and overwriting values) for every default value.
You can also modify the values by modifing them normally
These are the keywords that you can currently autocomplete using this package:
.model
: Define a sub-cell by specifying the name of its model..inputs
: Define the name of the input(s)..outputs
: Define the name of the output(s)..names
: Define a link between inputs and an output . (on a new line write a truth table with only minterms/maxterms)..exdc
: Specifies that the following truth tables have don't care(s) as an output..start_kiss
: Defines a FSM..end_kiss
: Closes the definition of an FSM..i
: Specifies the number of inputs of a FSM..o
: Specifies the number of outputs of a FSM..s
: Specifies the number of states of a FSM..p
: Specifies the number of states transitions of a FSM..r
: Specifies the name of the reset state of a FSM..code
: Define a state encoding..subckt
: Initialize an instance of a sub-cell model..search
: Searches (imports) sub-cell models defined in another .blif file..latch
: Defines a latch..end
: Closes the definition of a sub-cell model.
This package highlights keywords that start with the dot .
and .subckt
parameters.
Highlighted keywords:
To make modifications to this package download the repository and place this folder inside the <data_path>/Packages/
folder and then open the files using a text editor.
Sublime text automatically reloads the package on changes.
Github Issues/pull requests are welcome!
Added Comments.tmPreferences
file
Fix: some syntax props didn't end with ".blif"
Slightly lighter package
Initial release