Multiple choice assembly

You want to initialize the IP register with the value 2000:

  1. Mov IP,2000

  2. Jmp 2000

  3. Mov 2000,IP

  4. You can not change IP register

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The Instruction Pointer (IP) register cannot be modified directly using a standard MOV instruction (e.g., 'MOV IP, 2000' is invalid). To jump to a specific address and update IP, one must use a jump instruction like 'JMP 2000'.