summaryrefslogtreecommitdiff
path: root/Negate_3.vf
diff options
context:
space:
mode:
Diffstat (limited to 'Negate_3.vf')
-rwxr-xr-xNegate_3.vf47
1 files changed, 47 insertions, 0 deletions
diff --git a/Negate_3.vf b/Negate_3.vf
new file mode 100755
index 0000000..7205c3a
--- /dev/null
+++ b/Negate_3.vf
@@ -0,0 +1,47 @@
+////////////////////////////////////////////////////////////////////////////////
+// Copyright (c) 1995-2011 Xilinx, Inc. All rights reserved.
+////////////////////////////////////////////////////////////////////////////////
+// ____ ____
+// / /\/ /
+// /___/ \ / Vendor: Xilinx
+// \ \ \/ Version : 13.3
+// \ \ Application : sch2hdl
+// / / Filename : Negate_3.vf
+// /___/ /\ Timestamp : 02/15/2012 15:00:08
+// \ \ / \
+// \___\/\___\
+//
+//Command: sch2hdl -intstyle ise -family spartan6 -verilog "X:/My Documents/ec311/lab1/Negate_3.vf" -w "X:/My Documents/ec311/lab1/Negate_3.sch"
+//Design Name: Negate_3
+//Device: spartan6
+//Purpose:
+// This verilog netlist is translated from an ECS schematic.It can be
+// synthesized and simulated, but it should not be modified.
+//
+`timescale 1ns / 1ps
+
+module Negate_3(b0,
+ b1,
+ b2,
+ b3,
+ result);
+
+ input b0;
+ input b1;
+ input b2;
+ input b3;
+ output result;
+
+ wire XLXN_8;
+ wire XLXN_9;
+
+ OR3 XLXI_5 (.I0(b2),
+ .I1(b1),
+ .I2(b0),
+ .O(XLXN_9));
+ NAND2 XLXI_9 (.I0(XLXN_8),
+ .I1(b3),
+ .O(result));
+ INV XLXI_12 (.I(XLXN_9),
+ .O(XLXN_8));
+endmodule