heyy, I study software so i'm absolutely new when it comes to drawing electrical circuits and I need to add a new instruction to This MIPS machine here
The new instruction i have to add jt - jump table - is an instruction which makes it possible to go to the address indicated by a value in memory at the address indicated by two registers:
jt rs, rt # PC := mem[ R[rs] + R[rt] * 8 ]
Its encoding is as follows: • Instruction [31-26]: Operation code for jt
• Instruction [25-21]: rs registry number
• Instruction [20-16]: rt registry number
• Instruction [15-11]: 0
• Instruction [10-6]: 0
• Instruction [5-0]: 0x20
Can someone explain to a complete beginner (me) the process to add an instruction like this one on the diagram? Thanks for your time.