CurrentInstruction() public abstract method

public abstract CurrentInstruction ( ) : AbstractInstruction
return AbstractInstruction
コード例 #1
0
        public void Transition()
        {
            while (!Stop())
            {
                AbstractInstruction next = _program.CurrentInstruction();
                AMHeap heap = (AMHeap)_dataArea;

                next.Execute(this);
            }
        }