示例#1
0
        public PQ020G_OrGate() : base(14)
        {
            IcType    = ICType.ic4;
            ModelName = "IC14";

            Chip = new Chips.Quad_Or_Gates();

            PinModes[2]  = PinMode.Ouput;
            PinModes[5]  = PinMode.Ouput;
            PinModes[7]  = PinMode.Ouput;
            PinModes[10] = PinMode.Ouput;
        }
示例#2
0
        public PQ020G_OrGate() : base(14)
        {
            IcType    = ICType.ic4;
            ModelName = "IC14";

            PinNames = new string[] { "A1", "B1", "Y1", "A2", "B2", "Y2", "GND", "Q3", "A3", "B3", "Q4", "A4", "B4", "VCC" };

            Chip = new Chips.Quad_Or_Gates();

            SetPinModes(2, PinMode.Ouput);
            SetPinModes(5, PinMode.Ouput);
            SetPinModes(7, PinMode.Ouput);
            SetPinModes(10, PinMode.Ouput);
        }