2.5.3.1.9 PushStackResult

msdn link

A support function, PushStackResult, pushes the input Result on the stack.

 PushStackResult (
       STACK ResultStack,
       INT32 StackPos,
       INT32 ResultValue     
    )
     --
     -- On entry
     --    ResultStack is the stack.
     --    StackPos is the stack position
     --    ResultValue is the result value to be stored on the stack
  
     Set ResultStack[StackPos].Result to ResultValue
     Set ResultStack[StackPos].Type to "Result Value"
     Increment StackPos by 1
 END-SUBROUTINE