We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GitHub uses https://github.com/github/linguist to do language stats. Currently the https://github.com/github/linguist/blob/master/lib/linguist/languages.yml file is missing a lot of important file formats used in FPGA/ASIC development.
Of the top of my head;
.gds
.lib
.oa
.spice
mag
maglef
LEF
CDL
Commercial file formats;
Should check the following are covered too.
* .v
* .vh
* .sv
* .svh
* .tcl
* .sdc
*.xdc
.blif
.eblif
.edif
.lef
.sdf
.spef
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Brief explanation
GitHub uses https://github.com/github/linguist to do language stats. Currently the https://github.com/github/linguist/blob/master/lib/linguist/languages.yml file is missing a lot of important file formats used in FPGA/ASIC development.
Of the top of my head;
.gds
.lib
- Liberty timing files.oa
- OpenAccess files.spice
- Spice simulation filesmag
,maglef
- magicLEF
CDL
Commercial file formats;
Should check the following are covered too.
* .v
- Verilog (C like -- should use a // comments, supports /* */ too)* .vh
- Verilog header (C like -- should use a // comments, supports /* */ too)* .sv
- SystemVerilog (should use /* / comments, supports / */ too)* .svh
- SystemVerilog header (should use /* / comments, supports / */ too)* .tcl
- TCL (should use # comments)* .sdc
/*.xdc
- Synopsis Design Constraint / Xilinx Design Constraint files -- Really TCL scripts (see above).blif
/.eblif
- Berkley Logic Interface Format (uses bash # style comments).edif
- Electronic Design Interchange Format (S-Expressions based -- unknown comment style?).lef
- Library Exchange Format (should use # comments).lib
- Liberty Timing File (should use /* */ style comments).sdf
- Standard Delay Format (LISP file which supports /* */ and // comments).spef
- Standard parasitics exchange format (supports only // style comments)The text was updated successfully, but these errors were encountered: