3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-28 03:15:50 +00:00

Progress on AppNote 011

This commit is contained in:
Clifford Wolf 2013-12-07 15:11:50 +01:00
parent cd0324decd
commit 97aa421ad8
2 changed files with 156 additions and 2 deletions

View file

@ -0,0 +1,4 @@
module primetest(p, a, b, ok);
input [15:0] p, a, b;
output ok = p != a*b || a == 1 || b == 1;
endmodule