InterviewSolution
Saved Bookmarks
| 1. |
What Will Happen If We Drop The Base Register In The Pgm Which Contains Only One Base Reg? |
|
Answer» It will give an ERROR at the time of assembly, if there are some labels defined in the PROGRAM(provided they are being referenced in your program). This is because the assembler resolves the displacement of that variable from the location where your BASE register is POINTING to. It will give an error at the time of assembly, if there are some labels defined in the program(provided they are being referenced in your program). This is because the assembler resolves the displacement of that variable from the location where your base register is pointing to. |
|