veripool / verilog-mode

Verilog-Mode for Emacs with Indentation, Hightlighting and AUTOs. Master repository for pushing to GNU, verilog.com and veripool.org.
http://veripool.org/verilog-mode
GNU General Public License v3.0
256 stars 90 forks source link

Verilog-A `analog` block support #1738

Closed danmcmahill closed 3 years ago

danmcmahill commented 3 years ago

Adds support for analog blocks in Verilog-A.

before:

module mymodule();
   analog begin
      // contents of the module goes here
   end // UNMATCHED !!
endmodule // mymodule

after:

module mymodule();
   analog begin
      // contents of the module goes here
   end // analog
endmodule // mymodule
wsnyder commented 3 years ago

I'm good to merge this when you feel it's stable for a bit, let me know when you think you are happy with it, thanks for improving this.

danmcmahill commented 3 years ago

I good with it.