| 337 | } |
| 338 | |
| 339 | void BNE() // Branch if Rs != Rt |
| 340 | { |
| 341 | if (cpuRegs.GPR.r[_Rs_].SD[0] != cpuRegs.GPR.r[_Rt_].SD[0]) |
| 342 | doBranch(_BranchTarget_); |
| 343 | else |
| 344 | intEventTest(); |
| 345 | } |
| 346 | |
| 347 | /********************************************************* |
| 348 | * Register branch logic * |
nothing calls this directly
no test coverage detected