mirror of
https://github.com/YosysHQ/yosys
synced 2025-05-11 09:44:44 +00:00
6 lines
141 B
Verilog
6 lines
141 B
Verilog
module top(input [1:0] a, output [1:0] b, output c, output d, output e);
|
|
assign b = a;
|
|
assign c = ^a;
|
|
assign d = ~c;
|
|
assign e = d;
|
|
endmodule
|