360 Assembly/360 Instructions/SR
SR - Subtract Register - Opcode 1B
Format
edit- SR 2,1
The specific syntax is
- SR target register, source register.
RR Instruction (2 bytes) | ||||||
Byte 1 | Byte 2 | |||||
target register | source register | |||||
(8 bits) Opcode 1B |
(4 bits) 0..F |
(4 bits) 0..F |
- The first argument is a target register which value is affected by the instruction.
- The second argument is the source value register.
Availability
editThe SR instruction is available on all models of the 360, 370 and z/System.
Operation
editThe SR instruction reads 32-bit integer value from the register specified by the second argument and subtracts it from the value of register specified by the first argument. The register specified by the first argument holds the operation result after the instruction is executed. The Condition Code field in the Program Status Word is changed according to the resulting value.
This instruction can also be used with both register arguments being the same in order to clear that register to zero. The same function occurs if both arguments are the same register in the XR instruction.
Condition Codes
editIf signed integer overflow occurs, i.e. difference is not between -2**31 and 2**31-1, CC is set to 3. Otherwise, CC is set to 0, 1 or 2, if difference is equal to zero, below zero or above zero accordingly.
Exceptions and Faults
edit- If signed integer overflow is detected and the bit 36 in PSW is set, operation exception occurs.
Related instructions
edit- To subtract by double word value from the full 64-bit double word of both registers on the z/Series, see SGR.
- To subtract by word value from the full 64-bit double word of the other register on the z/Series, see SGFR.
- To subtract by full 64-bit double word register on the z/Series from a 64-bit double word in memory, see SG.
- To subtract from full 64-bit double word register on the z/Series from a 32-bit word in memory, see SGF.
- To subtract by word value from memory, see S.
- To subtract by half-word value from memory, see SH.
- To subtract by value and set condition codes according to unsigned arithmetic, or add not most significant part of multi-word integer value, see SL or SLR.
- To subtract 32-bit word floating-point values, see SE, SER, SD or SDR.
- To add a 32-bit word integer value, see AR, A, AH, AL or ALR.
- To check condition code, see BC or BCR.
Previous Instruction SQXR |
360 Assembly Instructions {{{name}}} |
Next Instruction SRA |
Previous Opcode 1A |
Next Opcode 1C |
360 Assembly Language | |
360 Family | Introduction · Basic FAQ · 360 Family · 360 Architecture |
---|---|
360 Instruction Set | 360 Instructions · Branch Instructions · Data Transfer Instructions · Control Flow Instructions · Arithmetic Instructions · Logic Instructions · Shift and Rotate Instructions · Priveleged Instructions · Other Instructions |
Syntaxes and Assemblers | 360 Assemblers· Pseudo Instructions |
Instruction Extensions | Floating Point · High-Level Languages |
This page or section is an undeveloped draft or outline. You can help to develop the work, or you can ask for assistance in the project room. |