mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-26 10:35:38 +00:00
4 lines
105 B
Verilog
4 lines
105 B
Verilog
module primetest(p, a, b, ok);
|
|
input [15:0] p, a, b;
|
|
output ok = p != a*b || a == 1 || b == 1;
|
|
endmodule
|