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-08-22 14:17:27 +02:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
gus/read-verilog-signedness-bugs
yosys
/
tests
/
asicworld
/
code_tidbits_wire_example.v
T
Add File
New File
Upload File
Apply Patch
Copy Permalink
10 lines
106 B
Verilog
Raw
Permalink
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