mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-24 05:47:35 -04:00
Fixed jalrs.
This commit is contained in:
parent
631e299bd7
commit
94e62a6191
1 changed files with 1 additions and 1 deletions
|
@ -235,7 +235,7 @@ void Instruction::executeOn(Core &c) {
|
|||
break;
|
||||
case JALRS: nextActiveThreads = reg[rsrc[0]];
|
||||
reg[rdest] = c.pc;
|
||||
c.pc = reg[rsrc[0]];
|
||||
c.pc = reg[rsrc[1]];
|
||||
break;
|
||||
case JMPRT: nextActiveThreads = 1;
|
||||
c.pc = reg[rsrc[0]];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue