Exemplo n.º 1
0
 private int Jal(Instruction_J instruction, int pc)
 {
     _registers.Write(31, (pc + 4).AsBytes());
     return(J(instruction, pc));
 }
Exemplo n.º 2
0
 private int J(Instruction_J instruction, int pc)
 {
     return((int)(pc & 0xf0000000) | instruction.Address << 2);
 }