//////////////////////////////////////////////////////////////////////////////// // Copyright (c) 1995-2011 Xilinx, Inc. All rights reserved. //////////////////////////////////////////////////////////////////////////////// // ____ ____ // / /\/ / // /___/ \ / Vendor: Xilinx // \ \ \/ Version : 13.3 // \ \ Application : sch2hdl // / / Filename : Modulo_0.vf // /___/ /\ Timestamp : 02/16/2012 19:52:31 // \ \ / \ // \___\/\___\ // //Command: sch2hdl -intstyle ise -family spartan6 -verilog "X:/My Documents/ec311/ec311-lab1/Modulo_0.vf" -w "X:/My Documents/ec311/ec311-lab1/Modulo_0.sch" //Design Name: Modulo_0 //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 Modulo_0(b0, b1, b2, b3, result); input b0; input b1; input b2; input b3; output result; wire XLXN_1; wire XLXN_3; wire XLXN_4; wire XLXN_12; wire XLXN_14; wire XLXN_15; wire XLXN_16; wire XLXN_27; wire XLXN_28; AND2 XLXI_2 (.I0(XLXN_1), .I1(b2), .O(XLXN_4)); OR2 XLXI_4 (.I0(XLXN_4), .I1(XLXN_3), .O(result)); INV XLXI_9 (.I(b1), .O(XLXN_15)); INV XLXI_10 (.I(b0), .O(XLXN_16)); AND3 XLXI_11 (.I0(b0), .I1(XLXN_28), .I2(XLXN_27), .O(XLXN_3)); INV XLXI_12 (.I(b2), .O(XLXN_27)); INV XLXI_13 (.I(b1), .O(XLXN_28)); OR2 XLXI_14 (.I0(XLXN_14), .I1(XLXN_12), .O(XLXN_1)); AND2 XLXI_15 (.I0(b0), .I1(b1), .O(XLXN_12)); AND2 XLXI_16 (.I0(XLXN_16), .I1(XLXN_15), .O(XLXN_14)); endmodule