pub fn call_return(
cpu: &mut Cpu,
scheme: InstructionScheme,
) -> OperationResult<()>
Expand description
0x0103
return (call_return)
§Target
- None
§Arguments
- None.
§Operation
current = pop
§Errors
- OperationError::InvalidArgumentType if the provided argument is not an ArgumentScheme::NoArgument,
- OperationError::CannotReturnFromEmptyStack if the stack is empty,
- OperationError::MemoryError if a memory error occurs.