CurrentInstruction() public abstract method

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

                next.Execute(this);
            }
        }