Sign in
foss-fpga-tools
/
python-symbiflow-v2x
/
037d50d09362cdcec5a109e8509a743f787f0e90
/
.
/
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