IBM Assembler Question:
Download Job Interview Questions and Answers PDF
Explain ICM instruction?
Answers:
Answer #1ICM means INsert character under mask. its a movement of character under mask bits
eg
ICM R8,B'0110',SRC
Before execution:
R8 ==> 12 34 56 78
SRC ==> AB CD EF 10
After Excecution:
R8 ==> 12 CD EF 78
eg
ICM R8,B'0110',SRC
Before execution:
R8 ==> 12 34 56 78
SRC ==> AB CD EF 10
After Excecution:
R8 ==> 12 CD EF 78
Answer #2R8 -> 12 AB CD 78
Download IBM Assembler Interview Questions And Answers
PDF
Previous Question | Next Question |
Can we use an equated value as operand for an MVC instruction? Reason for the same? | Explain about maximum displacement and how to cross this limit? |