Skip to content

Commit

Permalink
Temp fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LuigiGiuffrida98 committed Dec 12, 2024
1 parent bb06865 commit f05252f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions hw/vendor/yosyshq_picorv32/picosoc/spiflash.v
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ module spiflash (
reg io2_dout = 0;
reg io3_dout = 0;

assign #1 io0 = io0_oe ? io0_dout : 1'bz;
assign #1 io1 = io1_oe ? io1_dout : 1'bz;
assign #1 io2 = io2_oe ? io2_dout : 1'bz;
assign #1 io3 = io3_oe ? io3_dout : 1'bz;
assign io0 = io0_oe ? io0_dout : 1'bz;
assign io1 = io1_oe ? io1_dout : 1'bz;
assign io2 = io2_oe ? io2_dout : 1'bz;
assign io3 = io3_oe ? io3_dout : 1'bz;

wire io0_delayed;
wire io1_delayed;
Expand Down

0 comments on commit f05252f

Please sign in to comment.