PerformCall() private method

private PerformCall ( uint address, uint args, uint destType, uint destAddr ) : void
address uint
args uint
destType uint
destAddr uint
return void
Ejemplo n.º 1
0
 protected void EmitChar(Engine e, uint ch)
 {
     if (e.outputSystem == IOSystem.Filter)
     {
         e.PerformCall(e.filterAddress, new uint[] { ch },
                       GLULX_STUB_RESUME_HUFFSTR, e.printingDigit, e.pc);
     }
     else
     {
         e.SendCharToOutput(ch);
     }
 }
Ejemplo n.º 2
0
 protected void EmitChar(Engine e, uint ch)
 {
     if (e.outputSystem == IOSystem.Filter)
     {
         e.PerformCall(e.filterAddress, new uint[] { ch },
             GLULX_STUB_RESUME_HUFFSTR, e.printingDigit, e.pc);
     }
     else
     {
         e.SendCharToOutput(ch);
     }
 }