mirror of
				https://github.com/yuzu-emu/yuzu.git
				synced 2025-11-04 08:13:41 +00:00 
			
		
		
		
	dyncom: Fix decoding of BKPT's immediate
A shift here is intended since the representation is imm12:imm4
This commit is contained in:
		
							parent
							
								
									7d21b0663b
								
							
						
					
					
						commit
						832c130ed1
					
				@ -1393,7 +1393,7 @@ static ARM_INST_PTR INTERPRETER_TRANSLATE(bkpt)(unsigned int inst, int index)
 | 
				
			|||||||
    inst_base->br       = NON_BRANCH;
 | 
					    inst_base->br       = NON_BRANCH;
 | 
				
			||||||
    inst_base->load_r15 = 0;
 | 
					    inst_base->load_r15 = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    inst_cream->imm = BITS(inst, 8, 19) | BITS(inst, 0, 3);
 | 
					    inst_cream->imm = (BITS(inst, 8, 19) << 4) | BITS(inst, 0, 3);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return inst_base;
 | 
					    return inst_base;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user