summaryrefslogtreecommitdiff
path: root/Divide_0.vf
diff options
context:
space:
mode:
Diffstat (limited to 'Divide_0.vf')
-rwxr-xr-xDivide_0.vf14
1 files changed, 7 insertions, 7 deletions
diff --git a/Divide_0.vf b/Divide_0.vf
index 1ffdc18..72398c8 100755
--- a/Divide_0.vf
+++ b/Divide_0.vf
@@ -7,11 +7,11 @@
// \ \ \/ Version : 13.3
// \ \ Application : sch2hdl
// / / Filename : Divide_0.vf
-// /___/ /\ Timestamp : 02/15/2012 15:00:06
+// /___/ /\ Timestamp : 02/16/2012 18:52:20
// \ \ / \
// \___\/\___\
//
-//Command: sch2hdl -intstyle ise -family spartan6 -verilog "X:/My Documents/ec311/lab1/Divide_0.vf" -w "X:/My Documents/ec311/lab1/Divide_0.sch"
+//Command: sch2hdl -intstyle ise -family spartan6 -verilog "X:/My Documents/ec311/ec311-lab1/Divide_0.vf" -w "X:/My Documents/ec311/ec311-lab1/Divide_0.sch"
//Design Name: Divide_0
//Device: spartan6
//Purpose:
@@ -32,25 +32,23 @@ module Divide_0(b0,
input b3;
output result;
- wire XLXN_1;
wire XLXN_2;
wire XLXN_3;
wire XLXN_4;
wire XLXN_5;
wire XLXN_6;
+ wire XLXN_12;
- AND3 XLXI_1 (.I0(b3),
+ AND3 XLXI_1 (.I0(b0),
.I1(b3),
.I2(XLXN_2),
.O(XLXN_5));
AND2 XLXI_2 (.I0(b1),
- .I1(XLXN_1),
+ .I1(XLXN_12),
.O(XLXN_4));
AND2 XLXI_3 (.I0(b1),
.I1(XLXN_3),
.O(XLXN_6));
- INV XLXI_4 (.I(b3),
- .O(XLXN_1));
INV XLXI_5 (.I(b1),
.O(XLXN_2));
INV XLXI_6 (.I(b0),
@@ -59,4 +57,6 @@ module Divide_0(b0,
.I1(XLXN_5),
.I2(XLXN_4),
.O(result));
+ INV XLXI_9 (.I(b3),
+ .O(XLXN_12));
endmodule