예제 #1
0
 private void ExecuteCycle()
 {
     var(instruction, operands) = _Program.Fetch(State);
     _InstructionSet[instruction](State, operands);
 }