Execute() public abstract method

public abstract Execute ( AbstractMachineState state ) : void
state AbstractMachineState
return void
        public void Transition()
        {
            while (!Stop())
            {
                AbstractInstruction next = _program.CurrentInstruction();
                AMHeap heap = (AMHeap)_dataArea;

                next.Execute(this);
            }
        }