summaryrefslogtreecommitdiff
path: root/manual/APPNOTE_011_Design_Investigation/splice.v
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2013-11-29 12:51:16 +0100
committerClifford Wolf <clifford@clifford.at>2013-11-29 12:51:16 +0100
commite23a0072ec75ce19733fb4ae04e623b17dbbd475 (patch)
tree4fc20e79abc9fbfb7a03978d94807ab778c5f1b6 /manual/APPNOTE_011_Design_Investigation/splice.v
parent1b3a60976d0f74791277515cfad20dc7e37e1b9a (diff)
Progress on AppNote 011
Diffstat (limited to 'manual/APPNOTE_011_Design_Investigation/splice.v')
-rw-r--r--manual/APPNOTE_011_Design_Investigation/splice.v3
1 files changed, 2 insertions, 1 deletions
diff --git a/manual/APPNOTE_011_Design_Investigation/splice.v b/manual/APPNOTE_011_Design_Investigation/splice.v
index b6796c51..1cf7274c 100644
--- a/manual/APPNOTE_011_Design_Investigation/splice.v
+++ b/manual/APPNOTE_011_Design_Investigation/splice.v
@@ -4,6 +4,7 @@ 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}};
+assign {y[11:4], y[1:0], y[3:2]} =
+ {a, b, -{c, d}, ~{e, f}};
endmodule