CurrentInstruction() public abstract méthode

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

                next.Execute(this);
            }
        }