예제 #1
0
        public PQ150G() : base(8)
        {
            IcType    = ICType.ic4;
            ModelName = "IC8";

            Chip = new Chips.Binary_Counter_4Bit();

            PinModes[2] = PinMode.Ouput;
            PinModes[4] = PinMode.Ouput;
            PinModes[5] = PinMode.Ouput;
            PinModes[6] = PinMode.Ouput;
        }
예제 #2
0
        public PQ150G() : base(8)
        {
            IcType    = ICType.ic4;
            ModelName = "IC8";

            PinNames = new string[] { "CLK", "RS", "Q1", "GND", "Q2", "Q3", "Q4", "VCC" };

            Chip = new Chips.Binary_Counter_4Bit();

            SetPinModes(2, PinMode.Ouput);
            SetPinModes(4, 5, PinMode.Ouput);
            SetPinModes(6, PinMode.Ouput);
        }