mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 22:58:50 +00:00
JitInterface: fix disassembly entry point
This adds the downcount check code to the disassembly text and removes the bogus instructions at the end.
This commit is contained in:
parent
0821607b2f
commit
8adca82cc6
1 changed files with 1 additions and 2 deletions
|
@ -202,8 +202,7 @@ namespace JitInterface
|
||||||
|
|
||||||
JitBlock* block = jit->GetBlockCache()->GetBlock(block_num);
|
JitBlock* block = jit->GetBlockCache()->GetBlock(block_num);
|
||||||
|
|
||||||
*code = (const u8*)jit->GetBlockCache()->GetCompiledCodeFromBlock(block_num);
|
*code = block->checkedEntry;
|
||||||
|
|
||||||
*code_size = block->codeSize;
|
*code_size = block->codeSize;
|
||||||
*address = block->originalAddress;
|
*address = block->originalAddress;
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue