mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	armemu: Fix SXTAB
This commit is contained in:
		
							parent
							
								
									efebd5589a
								
							
						
					
					
						commit
						b5dbd6f2a2
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -6044,7 +6044,7 @@ L_stm_s_takeabort: | |||
| 				break; | ||||
| 			} | ||||
| 
 | ||||
| 			Rm = ((state->Reg[BITS(0, 3)] >> ror) & 0xFF); | ||||
| 			Rm = ((state->Reg[BITS(0, 3)] >> ror) & 0xFF) | ((state->Reg[BITS(0, 3)] << (32 - ror)) & 0xFF) & 0xFF; | ||||
| 			if (Rm & 0x80) | ||||
| 				Rm |= 0xffffff00; | ||||
| 
 | ||||
|  | @ -6053,7 +6053,7 @@ L_stm_s_takeabort: | |||
| 				state->Reg[BITS(12, 15)] = Rm; | ||||
| 			else | ||||
| 				/* SXTAB */ | ||||
| 				state->Reg[BITS(12, 15)] += Rm; | ||||
| 				state->Reg[BITS(12, 15)] = state->Reg[BITS(16, 19)] + Rm; | ||||
| 
 | ||||
| 			return 1; | ||||
| 		} | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue