예제 #1
0
파일: Cpu.cs 프로젝트: jpeace/SharpOs
 public void Start()
 {
     while(true)
     {
         var instruction = new CpuInstruction(_memory.GetWordAt(IP));
         _instructionExector.Execute(instruction);
     }
 }
예제 #2
0
 public void Setup()
 {
     _cut = new CpuInstruction();
 }