summaryrefslogtreecommitdiff
path: root/Negate_3.vf
diff options
context:
space:
mode:
authorMichael Abed <michaelabed@gmail.com>2012-02-17 12:08:05 -0500
committerMichael Abed <michaelabed@gmail.com>2012-02-17 12:08:05 -0500
commit70b77304f37d9681aa3bfa0eb57df0bcfd1aef81 (patch)
tree48ab397b4072275dbc5a6b2f92a54d3c79e1fdea /Negate_3.vf
parent57738e75e221fe61a8f87270b430c0f1c0b8ead5 (diff)
downloadec311-lab1-master.tar.gz
ec311-lab1-master.tar.bz2
ec311-lab1-master.zip
make it workHEADmaster
Diffstat (limited to 'Negate_3.vf')
-rwxr-xr-xNegate_3.vf22
1 files changed, 11 insertions, 11 deletions
diff --git a/Negate_3.vf b/Negate_3.vf
index 7205c3a..4b821ca 100755
--- a/Negate_3.vf
+++ b/Negate_3.vf
@@ -7,11 +7,11 @@
// \ \ \/ Version : 13.3
// \ \ Application : sch2hdl
// / / Filename : Negate_3.vf
-// /___/ /\ Timestamp : 02/15/2012 15:00:08
+// /___/ /\ Timestamp : 02/16/2012 19:22:52
// \ \ / \
// \___\/\___\
//
-//Command: sch2hdl -intstyle ise -family spartan6 -verilog "X:/My Documents/ec311/lab1/Negate_3.vf" -w "X:/My Documents/ec311/lab1/Negate_3.sch"
+//Command: sch2hdl -intstyle ise -family spartan6 -verilog "X:/My Documents/ec311/ec311-lab1/Negate_3.vf" -w "X:/My Documents/ec311/ec311-lab1/Negate_3.sch"
//Design Name: Negate_3
//Device: spartan6
//Purpose:
@@ -33,15 +33,15 @@ module Negate_3(b0,
output result;
wire XLXN_8;
- wire XLXN_9;
+ wire XLXN_10;
- 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),
+ OR3 XLXI_14 (.I0(b2),
+ .I1(b1),
+ .I2(b0),
.O(XLXN_8));
+ INV XLXI_15 (.I(b3),
+ .O(XLXN_10));
+ AND2 XLXI_16 (.I0(XLXN_8),
+ .I1(XLXN_10),
+ .O(result));
endmodule