pub fn jump(cpu: &mut Cpu, scheme: InstructionScheme) -> OperationResult<()>
Expand description
§0x0101
jump:address
§Target
- The register containing the target address in memory.
§Arguments
- None.
§Operation
current = r:target
§Errors
- OperationError::InvalidArgumentType if the provided argument is not an ArgumentScheme::NoArgument,
- OperationError::MemoryError if a memory error occurs.