suppressing semi-colon at the end of dot files
[yosys.git] / manual / APPNOTE_011_Design_Investigation / primetest.v
1 module primetest(p, a, b, ok);
2 input [15:0] p, a, b;
3 output ok = p != a*b || a == 1 || b == 1;
4 endmodule