Sign in
foss-fpga-tools
/
third_party
/
yosys
/
f6ff311a1dc9876911594328350e2d3fc62a5535
/
.
/
tests
/
asicworld
/
code_tidbits_wire_example.v
blob: 577a535d1b4945235671cac4ace7888f81774261 [
file
]
module
wire_example
(
a
,
b
,
y
);
input a
,
b
;
output y
;
wire a
,
b
,
y
;
assign y
=
a
&
b
;
endmodule