IBM Assembler Question:
Download Questions PDF

Explain ICM instruction?

Answers:

Answer #1
ICM 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

Answer #2
R8 -> 12 AB CD 78

Download IBM Assembler Interview Questions And Answers PDF

Previous QuestionNext 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?