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:
parent
cd0324decd
commit
97aa421ad8
2 changed files with 156 additions and 2 deletions
4
manual/APPNOTE_011_Design_Investigation/primetest.v
Normal file
4
manual/APPNOTE_011_Design_Investigation/primetest.v
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue