PrintIndirect() private method

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.
return void
Exemplo n.º 1
0
 public override void HandleNextChar(Engine e)
 {
     e.PrintIndirect(
         dblIndirect ? e.image.ReadInt32(address) : address,
         argCount, argsAt);
 }
Exemplo n.º 2
0
 public override void HandleNextChar(Engine e)
 {
     e.PrintIndirect(
         dblIndirect ? e.image.ReadInt32(address) : address,
         argCount, argsAt);
 }