PrintIndirect() 개인적인 메소드

Prints a string, or calls a routine, when an indirect node is encountered in a compressed string.
private PrintIndirect ( uint address, uint argCount, uint argsAt ) : void
address uint The address of the string or routine.
argCount uint The number of arguments passed in.
argsAt uint The address where the argument array is stored.
리턴 void
예제 #1
0
 public override void HandleNextChar(Engine e)
 {
     e.PrintIndirect(
         dblIndirect ? e.image.ReadInt32(address) : address,
         argCount, argsAt);
 }
예제 #2
0
파일: Output.cs 프로젝트: DESYS21/FyreVM
 public override void HandleNextChar(Engine e)
 {
     e.PrintIndirect(
         dblIndirect ? e.image.ReadInt32(address) : address,
         argCount, argsAt);
 }