예제 #1
0
파일: Iny.cs 프로젝트: joshpeterson/mos
 public virtual void Execute(ProgrammingModel model, Memory memory, byte argument)
 {
     RegisterUtils.IncrementRegister(model, RegisterName.Y);
 }
예제 #2
0
 public Executor(Registry registry, ProgrammingModel model, Memory memory)
 {
     this.registry = registry;
       this.model = model;
       this.memory = memory;
 }
예제 #3
0
파일: Fetcher.cs 프로젝트: joshpeterson/mos
 public Fetcher(ProgrammingModel model, Memory memory)
 {
     this.model = model;
       this.memory = memory;
 }