Skip to content

Commit

Permalink
Fix VCS VILIOP errors
Browse files Browse the repository at this point in the history
Signed-off-by: Krzysztof Boronski <[email protected]>
  • Loading branch information
kboronski-ant authored and robertszczepanski committed Oct 3, 2024
1 parent c12ee3f commit fcaceab
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/i3c_wrapper.sv
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ module i3c_wrapper #(
output logic sel_od_pp_o
`else
// I3C bus IO
inout logic i3c_scl_io,
inout logic i3c_sda_io
inout wire i3c_scl_io,
inout wire i3c_sda_io
`endif

// TODO: Add interrupts
Expand Down
2 changes: 1 addition & 1 deletion src/phy/buf_od.sv
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/
module buf_od (
input logic drive_low,
inout logic buf_od_o
inout wire buf_od_o
);

assign buf_od_o = drive_low ? 1'b0 : 1'bz;
Expand Down
2 changes: 1 addition & 1 deletion src/phy/bufs.sv
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
module bufs (
input logic phy_data_i,
input logic sel_od_pp_i,
inout logic phy_data_io
inout wire phy_data_io
);

logic phy_data_i_z;
Expand Down
4 changes: 2 additions & 2 deletions src/phy/i3c_io.sv
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ module i3c_io (
input logic sel_od_pp_i,

// Bus {SCL, SDA}
inout logic scl_io,
inout logic sda_io
inout wire scl_io,
inout wire sda_io
);

wire scl_io_int;
Expand Down

0 comments on commit fcaceab

Please sign in to comment.