| 760 | } |
| 761 | |
| 762 | void SH() |
| 763 | { |
| 764 | u32 addr = cpuRegs.GPR.r[_Rs_].UL[0] + _Imm_; |
| 765 | |
| 766 | if (addr & 1) [[unlikely]] |
| 767 | RaiseAddressError(addr, true); |
| 768 | |
| 769 | memWrite16(addr, cpuRegs.GPR.r[_Rt_].US[0]); |
| 770 | } |
| 771 | |
| 772 | void SW() |
| 773 | { |
nothing calls this directly
no test coverage detected