mirror of
https://github.com/annoyatron255/yosys4gal.git
synced 2024-12-22 18:52:23 +00:00
12 lines
236 B
Verilog
12 lines
236 B
Verilog
module complex_single_sop (clk, A, B, C,D, Y);
|
|
|
|
input A, B, C, D;
|
|
input clk;
|
|
output reg Y;
|
|
|
|
always @(posedge clk) begin
|
|
Y <= (A && !B && !C && D) || (!A && B && !C && D) || (!A && !B && C && D) || (A && B && C && D);
|
|
end
|
|
|
|
endmodule
|