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