示例#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
 public Fetcher(ProgrammingModel model, Memory memory)
 {
     this.model = model;
       this.memory = memory;
 }