public void Initialize(RegisterGrid parent, uint pos)
        {
            ParentWindow = parent;
            Position     = pos;

            ParentWindow.RegisterChanged += OnRegisterChanged;

            SetValue(ParentWindow.get(Position));
        }
        public void Initialize(RegisterGrid parent, uint pins_pos, uint tris_pos)
        {
            ParentWindow  = parent;
            Position_PINS = pins_pos;
            Position_TRIS = tris_pos;

            ParentWindow.RegisterChanged += OnRegisterChanged;

            setTRIS(ParentWindow.get(Position_TRIS));
            setPINS(ParentWindow.get(Position_PINS));
        }
        public void Initialize(RegisterGrid parent)
        {
            ParentWindow = parent;

            ParentWindow.RegisterChanged += OnRegisterChanged;
        }
Ejemplo n.º 4
0
 public void Initialize(RegisterGrid parent)
 {
     display.Initialize(parent);
 }