Consider the j(jump) instruction in MIPS. How far can it jump in memory? Would it be 32bits? Can i please have an explanation.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
From this page, you’ll see that the jump instruction has the following effects:
targetis a 26 bit number. That means thejinstruction can jump to any absolute address that can be created from the operation above. The largest value fortarget, therefore, is 226-1 (0x03FFFFFF), and the highest reachable address is(PC & 0xF0000000) | 0x0FFFFFFC.