mirror of
https://github.com/annoyatron255/yosys4gal.git
synced 2024-12-22 10:42:24 +00:00
12 lines
236 B
Coq
12 lines
236 B
Coq
|
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
|