Skip to content

Commit

Permalink
Fix inout in generated verilog
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardt committed Apr 26, 2019
1 parent c162227 commit 4c771d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/test_verilog/gold/test_pad.v
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module PRWDWUWSWCDGH_V (
input I,
input IE,
input OEN,
output PAD,
inout PAD,
input PD,
input PU,
input RTE,
Expand All @@ -26,7 +26,7 @@ endmodule // PRWDWUWSWCDGH_V
*/
module Top (
output pad
inout pad
);


Expand Down
2 changes: 1 addition & 1 deletion tests/test_verilog/test_from_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def test_from_sv():
"test_pe.sv")


def test_from_pad_out():
def test_from_pad_inout():
file_path = os.path.dirname(__file__)
Pad = m.DeclareFromVerilogFile(os.path.join(file_path, "pad.v"))[0]

Expand Down

0 comments on commit 4c771d2

Please sign in to comment.