Commit 1d3433ed authored by Sebastien Bourdeauducq's avatar Sebastien Bourdeauducq
Browse files

Revert "Emit `default_nettype none."

Breaks inouts with vivado.

This reverts commit 2a7e33e9.
parent 4621abca
...@@ -204,8 +204,7 @@ def _printheader(f, ios, name, ns, attr_translate, ...@@ -204,8 +204,7 @@ def _printheader(f, ios, name, ns, attr_translate,
targets = list_targets(f) | special_outs targets = list_targets(f) | special_outs
wires, comb_regs = _list_comb_wires_regs(f) wires, comb_regs = _list_comb_wires_regs(f)
wires |= special_outs wires |= special_outs
r = "`default_nettype none\n\n" r = "module " + name + "(\n"
r += "module " + name + "(\n"
firstp = True firstp = True
for sig in sorted(ios, key=lambda x: x.duid): for sig in sorted(ios, key=lambda x: x.duid):
if not firstp: if not firstp:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment