Remillard / VHDL-Mode

A package for Sublime Text that aids coding in the VHDL language.
MIT License
40 stars 10 forks source link

Scoping of attribute #32

Closed Remillard closed 7 years ago

Remillard commented 7 years ago

There's an error in scoping attribute if no space after the signal name:

    attribute syn_keep of gated_echo_ptrig: signal is TRUE;

Will fail. The following passes:

    attribute syn_keep of gated_echo_ptrig : signal is TRUE;
Remillard commented 7 years ago

Fixed and staged for release.