mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	arm_disasm: Show conditional code for BKPT instructions.
Changed cond_to_str to take a uint32, since unsigned numbers are only ever passed to it, and this can be a source of warnings for some compilers (also indexing an array without bounds checking a signed number is kind of iffy).
This commit is contained in:
		
							parent
							
								
									c9ef377afa
								
							
						
					
					
						commit
						9ed3488925
					
				
					 1 changed files with 3 additions and 2 deletions
				
			
		|  | @ -131,7 +131,7 @@ static const char *shift_names[] = { | ||||||
|     "ROR" |     "ROR" | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
| static const char* cond_to_str(int cond) { | static const char* cond_to_str(uint32_t cond) { | ||||||
|     return cond_names[cond]; |     return cond_names[cond]; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | @ -337,8 +337,9 @@ std::string ARM_Disasm::DisassembleBX(uint32_t insn) | ||||||
| 
 | 
 | ||||||
| std::string ARM_Disasm::DisassembleBKPT(uint32_t insn) | std::string ARM_Disasm::DisassembleBKPT(uint32_t insn) | ||||||
| { | { | ||||||
|  |     uint8_t cond = (insn >> 28) & 0xf; | ||||||
|     uint32_t immed = (((insn >> 8) & 0xfff) << 4) | (insn & 0xf); |     uint32_t immed = (((insn >> 8) & 0xfff) << 4) | (insn & 0xf); | ||||||
|     return Common::StringFromFormat("bkpt\t#%d", immed); |     return Common::StringFromFormat("bkpt%s\t#%d", cond_to_str(cond), immed); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| std::string ARM_Disasm::DisassembleCLZ(uint32_t insn) | std::string ARM_Disasm::DisassembleCLZ(uint32_t insn) | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue