forked from YosysHQ/yosys
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule yosys-slang
updated
25 files
+43 −0 | .github/workflows/build-and-test.yaml | |
+20 −2 | README.md | |
+2 −2 | src/addressing.h | |
+78 −0 | src/builder.cc | |
+9 −0 | src/diag.cc | |
+2 −0 | src/diag.h | |
+3 −1 | src/memory.h | |
+299 −75 | src/slang_frontend.cc | |
+22 −3 | src/slang_frontend.h | |
+1 −1 | tests/third_party/croc | |
+21 −1 | tests/unit/all.tcl | |
+60 −0 | tests/unit/break.sv | |
+32 −0 | tests/unit/case.sv | |
+18 −0 | tests/unit/complex_lhs.sv | |
+0 −6 | tests/unit/partsel_lhs.sv | |
+2 −2 | tests/unit/port_sext.sv | |
+11 −3 | tests/various/expr.sv | |
+11 −0 | tests/various/formal_stmts.sv | |
+7 −0 | tests/various/formal_stmts.ys | |
+12 −7 | tests/various/intf_w_hierarchy.sv | |
+20 −0 | tests/various/regress.sv | |
+1 −0 | tests/various/regress.ys | |
+17 −0 | tests/various/top_attr.sv | |
+3 −0 | tests/various/top_attr.ys | |
+1 −1 | third_party/slang |