Skip to content

Commit

Permalink
Merge pull request #80 from siliconcompiler/fix-again
Browse files Browse the repository at this point in the history
fix verilog syntax error
  • Loading branch information
gadfort authored Aug 29, 2024
2 parents 6cd36a4 + 288dc3a commit be69126
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion lambdapdk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import siliconcompiler.package as sc_package


__version__ = "0.1.30"
__version__ = "0.1.31"


def register_data_source(chip):
Expand Down
12 changes: 6 additions & 6 deletions lambdapdk/gf180/libs/gf180mcu_fd_io/lambda/la_iopoc.v
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ module la_iopoc #(
parameter CFGW = 16, // width of core config bus
parameter RINGW = 8 // width of io ring
) (
inout vdd, // core supply
inout vss, // core ground
inout vddio, // io supply
inout vssio, // io ground
inout [RINGW-1:0] ioring // generic io-ring interface
input [ CFGW-1:0] cfg // generic config interface
inout vdd, // core supply
inout vss, // core ground
inout vddio, // io supply
inout vssio, // io ground
inout [RINGW-1:0] ioring, // generic io-ring interface
input [ CFGW-1:0] cfg // generic config interface
);

endmodule
12 changes: 6 additions & 6 deletions lambdapdk/sky130/libs/sky130io/lambda/la_iopoc.v
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ module la_iopoc #(
parameter CFGW = 16, // width of core config bus
parameter RINGW = 8 // width of io ring
) (
inout vdd, // core supply
inout vss, // core ground
inout vddio, // io supply
inout vssio, // io ground
inout [RINGW-1:0] ioring // generic io-ring interface
input [ CFGW-1:0] cfg // generic config interface
inout vdd, // core supply
inout vss, // core ground
inout vddio, // io supply
inout vssio, // io ground
inout [RINGW-1:0] ioring, // generic io-ring interface
input [ CFGW-1:0] cfg // generic config interface
);

endmodule

0 comments on commit be69126

Please sign in to comment.