Sign in
foss-fpga-tools
/
python-symbiflow-v2x
/
f0eccf8cfce312e3a178b5c39b5b1ae008d4093e
/
.
/
tests
/
net_attr
/
parent.sim.v
blob: 599456a644355d93537cbf6ce5968453019278f8 [
file
]
`include "./child/child.sim.v"
module PARENT(
input wire I,
output wire O
);
wire hop1 = I;
CHILD child (
.I(hop1),
.O(O)
);
endmodule