pub fn and(cpu: &mut Cpu, scheme: InstructionScheme) -> OperationResult<()>Expand description
§0x0403 and:target [start:end]
§Target
- The register to store the result value.
§Arguments
- The register range onto apply the operator.
§Operation
REG[$target] = 0xFF... and REG[start..end]...
§Errors
- OperationError::InvalidArgumentType if the provided argument is not an ArgumentType::Range,