Sign in
foss-fpga-tools
/
third_party
/
yosys
/
f90a4b1e24e36943a343bd36315b6029dd6cd044
/
.
/
manual
/
APPNOTE_011_Design_Investigation
/
primetest.v
blob: 6cb766b73376ffda67acd76002571834a80e2567 [
file
]
module
primetest
(
p
,
a
,
b
,
ok
);
input
[
15
:
0
]
p
,
a
,
b
;
output ok
=
p
!=
a
*
b
||
a
==
1
||
b
==
1
;
endmodule