예제 #1
0
 public void Initialize()
 {
     localprocessor = new ASMProcessor();
     LoadProcessorsAndConfigurations();
 }
예제 #2
0
 public WrappedThreadObject(ASMProcessor threadprocessor)
 {
     this.mthread = new ProgramThread();
     this.mthread.pstack = new double[LocalMachine.threadstacksize,2];
     this.mthread.stackpointer = -1;
     this.threadprocessor = threadprocessor;
 }