aboutsummaryrefslogtreecommitdiffstats
path: root/manual/APPNOTE_011_Design_Investigation/splice.v
diff options
context:
space:
mode:
authorKrystalDelusion <krystinedawn@yosyshq.com>2022-12-08 05:54:38 +1300
committerKrystalDelusion <krystinedawn@yosyshq.com>2022-12-08 05:54:38 +1300
commita955c42d6c414241be39f6a2475d73ee2bdb4e43 (patch)
treefcb6a9b07249485f916bf9fc717a7cf7685ccb10 /manual/APPNOTE_011_Design_Investigation/splice.v
parent1eec255e60f2854b4dd1fa212f02d57eb31c9f19 (diff)
downloadyosys-a955c42d6c414241be39f6a2475d73ee2bdb4e43.tar.gz
yosys-a955c42d6c414241be39f6a2475d73ee2bdb4e43.tar.bz2
yosys-a955c42d6c414241be39f6a2475d73ee2bdb4e43.zip
And appnotes
Diffstat (limited to 'manual/APPNOTE_011_Design_Investigation/splice.v')
-rw-r--r--manual/APPNOTE_011_Design_Investigation/splice.v10
1 files changed, 0 insertions, 10 deletions
diff --git a/manual/APPNOTE_011_Design_Investigation/splice.v b/manual/APPNOTE_011_Design_Investigation/splice.v
deleted file mode 100644
index 1cf7274c0..000000000
--- a/manual/APPNOTE_011_Design_Investigation/splice.v
+++ /dev/null
@@ -1,10 +0,0 @@
-module splice_demo(a, b, c, d, e, f, x, y);
-
-input [1:0] a, b, c, d, e, f;
-output [1:0] x = {a[0], a[1]};
-
-output [11:0] y;
-assign {y[11:4], y[1:0], y[3:2]} =
- {a, b, -{c, d}, ~{e, f}};
-
-endmodule