Skip to content

Commit b67f85e

Browse files
committed
Adding project readme
1 parent 902f470 commit b67f85e

File tree

1 file changed

+63
-0
lines changed

1 file changed

+63
-0
lines changed

README.md

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# vim-hdl-examples
2+
3+
An example project to demonstrate the usage of [vim-hdl][vim-hdl].
4+
5+
# Usage
6+
7+
1. Check the ModelSim® version you have installed (any version should work)
8+
9+
```bash
10+
$ vcom -version
11+
Model Technology ModelSim ALTERA vcom 10.3c Compiler 2014.09 Sep 20 2014
12+
```
13+
14+
2. Install [vim-hdl][vim-hdl] and [Syntastic][Syntastic]
15+
16+
3. Clone this repository
17+
18+
```bash
19+
$ mkdir ~/temp/
20+
$ cd ~/temp/
21+
$ git clone https://github.com/suoto/vim-hdl-examples.git
22+
```
23+
24+
4. Open a VHD from this repository
25+
26+
```bash
27+
$ vim another_library/foo.vhd
28+
```
29+
30+
5. Select the project file
31+
32+
```viml
33+
let g:vimhdl_conf_file = 'example.conf'
34+
```
35+
36+
6. Save the file to run the plugin
37+
38+
```viml
39+
:w
40+
```
41+
42+
## Issues
43+
44+
You can use the [vim-hdl issue tracker][issue_tracker] for bugs, feature request and so on.
45+
46+
## License
47+
48+
This software is licensed under the [GPL v3 license][gpl].
49+
50+
## Notice
51+
52+
Mentor Graphics®, ModelSim® and their respective logos are trademarks or registered trademarks of Mentor Graphics, Inc.
53+
54+
Altera® and its logo is a trademark or registered trademark of Altera Corporation.
55+
56+
vim-hdl's author has no connection or affiliation to any of the trademarks mentioned or used by this software.
57+
58+
[Syntastic]: https://github.com/scrooloose/syntastic
59+
[vim-hdl]: https://github.com/suoto/vim-hdl/
60+
[gpl]: http://www.gnu.org/copyleft/gpl.html
61+
[issue_tracker]: https://github.com/suoto/vim-hdl/issues
62+
63+

0 commit comments

Comments
 (0)