Create a Verilog Parser with Ruby

2019-06-06 11:46发布

I would like to create a Verilog parser written in Ruby for a university project

I know there are parser generators like Bison and Yacc.

Could anyone give me some advice on how to get started?

2条回答
够拽才男人
2楼-- · 2019-06-06 12:03

There do exist parser generators for Ruby too, e.g. racc. Start installing the racc gem and read the included documentation and examples.

查看更多
贼婆χ
3楼-- · 2019-06-06 12:10

I already have a very basic verilog parser (gem) written in ruby called verilog, if you could consider contributing to that instead, or it might give an idea of how to start.

I also have a gem called rubyit, which is command line utility to parse files with erb and generate the standard version of the file. Which can be used for extendable verilog templates, similar to generate statements but gives a flexible port list and ability to check the generated code.

查看更多
登录 后发表回答