Skip to content

Commit

Permalink
fixed polarity of T on IOBUF model
Browse files Browse the repository at this point in the history
  • Loading branch information
dirjud committed Jun 21, 2016
1 parent 2e21dc8 commit e6dc3ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IOBUF.v
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module IOBUF (O, IO, I, T);
inout IO;
input I, T;

assign IO = T ? I : 1'bz;
assign IO = ~T ? I : 1'bz;
assign O = IO;

endmodule
Expand Down

0 comments on commit e6dc3ae

Please sign in to comment.