This website requires JavaScript.
Explore
Help
Sign In
luke
/
yosys
Watch
1
Star
0
Fork
0
mirror of
https://github.com/YosysHQ/yosys.git
synced
2026-09-07 12:21:16 +02:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
fa86bd4c52188cb5a33ffc2f3ba2d044ad12b87f
yosys
/
tests
/
asicworld
/
code_tidbits_wire_example.v
T
10 lines
106 B
Verilog
Raw
Normal View
History
Unescape
Escape
initial import
2013-01-05 11:13:26 +01:00
module
wire_example
(
a
,
b
,
y
);
input
a
,
b
;
output
y
;
wire
a
,
b
,
y
;
assign
y
=
a
&
b
;
endmodule
Reference in New Issue
Copy Permalink