aboutsummaryrefslogtreecommitdiffstats
path: root/manual/APPNOTE_011_Design_Investigation/primetest.v
diff options
context:
space:
mode:
authorMiodrag Milanović <mmicko@gmail.com>2023-01-02 16:07:36 +0100
committerGitHub <noreply@github.com>2023-01-02 16:07:36 +0100
commit257b41cd1fc3f5ce73fd111e7014150f46af833c (patch)
tree33aedbe2ca1f0420b182a7dea8606078044902b4 /manual/APPNOTE_011_Design_Investigation/primetest.v
parent3ebc50dee4007f8cca4ffc0e850bc3e86f7641f4 (diff)
parentf2a4e5f1a077e7980598114adf33951132e60785 (diff)
downloadyosys-257b41cd1fc3f5ce73fd111e7014150f46af833c.tar.gz
yosys-257b41cd1fc3f5ce73fd111e7014150f46af833c.tar.bz2
yosys-257b41cd1fc3f5ce73fd111e7014150f46af833c.zip
Merge pull request #3577 from KrystalDelusion/deprecate_manual
Deprecate manual
Diffstat (limited to 'manual/APPNOTE_011_Design_Investigation/primetest.v')
-rw-r--r--manual/APPNOTE_011_Design_Investigation/primetest.v4
1 files changed, 0 insertions, 4 deletions
diff --git a/manual/APPNOTE_011_Design_Investigation/primetest.v b/manual/APPNOTE_011_Design_Investigation/primetest.v
deleted file mode 100644
index 6cb766b73..000000000
--- a/manual/APPNOTE_011_Design_Investigation/primetest.v
+++ /dev/null
@@ -1,4 +0,0 @@
-module primetest(p, a, b, ok);
-input [15:0] p, a, b;
-output ok = p != a*b || a == 1 || b == 1;
-endmodule