mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-11 03:33:36 +00:00
13 lines
128 B
Verilog
13 lines
128 B
Verilog
|
|
module example(a, y);
|
|
|
|
input [15:0] a;
|
|
output y;
|
|
|
|
wire gt = a > 12345;
|
|
wire lt = a < 12345;
|
|
assign y = !gt && !lt;
|
|
|
|
endmodule
|
|
|