aboutsummaryrefslogtreecommitdiffstats
path: root/manual/APPNOTE_011_Design_Investigation/example.v
diff options
context:
space:
mode:
authorPeter Gadfort <peter.gadfort@gmail.com>2023-01-02 12:46:41 -0500
committerPeter Gadfort <peter.gadfort@gmail.com>2023-01-02 12:46:41 -0500
commit7971154e727cc4d7c4b8c62ad43a28645bb66795 (patch)
treeea4632f116b272bc15940cc59f45a73eef008566 /manual/APPNOTE_011_Design_Investigation/example.v
parent58cca9592d64178a097c6345a576b1df022cd50c (diff)
parent583ab81670847bc0084708bab04c64cb43bc3a51 (diff)
downloadyosys-7971154e727cc4d7c4b8c62ad43a28645bb66795.tar.gz
yosys-7971154e727cc4d7c4b8c62ad43a28645bb66795.tar.bz2
yosys-7971154e727cc4d7c4b8c62ad43a28645bb66795.zip
Merge branch 'master' into stat-json-area
Diffstat (limited to 'manual/APPNOTE_011_Design_Investigation/example.v')
-rw-r--r--manual/APPNOTE_011_Design_Investigation/example.v6
1 files changed, 0 insertions, 6 deletions
diff --git a/manual/APPNOTE_011_Design_Investigation/example.v b/manual/APPNOTE_011_Design_Investigation/example.v
deleted file mode 100644
index 8c71989b3..000000000
--- a/manual/APPNOTE_011_Design_Investigation/example.v
+++ /dev/null
@@ -1,6 +0,0 @@
-module example(input clk, a, b, c,
- output reg [1:0] y);
- always @(posedge clk)
- if (c)
- y <= c ? a + b : 2'd0;
-endmodule