mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-06 05:48:40 +00:00
dasm address consistency
This commit is contained in:
+1
-1
@@ -48,7 +48,7 @@ commands =
|
|||||||
.rjf_f1 =
|
.rjf_f1 =
|
||||||
{
|
{
|
||||||
//.win = "build rdi_from_pdb rdi_dump && pushd build && rdi_from_pdb --pdb:mule_main.pdb --out:mule_main.rdi && rdi_dump mule_main.rdi > mule_main.dump && popd",
|
//.win = "build rdi_from_pdb rdi_dump && pushd build && rdi_from_pdb --pdb:mule_main.pdb --out:mule_main.rdi && rdi_dump mule_main.rdi > mule_main.dump && popd",
|
||||||
.win = "build raddbg telemetry release",
|
.win = "build raddbg telemetry",
|
||||||
.linux = "",
|
.linux = "",
|
||||||
.out = "*compilation*",
|
.out = "*compilation*",
|
||||||
.footer_panel = true,
|
.footer_panel = true,
|
||||||
|
|||||||
@@ -537,7 +537,7 @@ dasm_parse_thread__entry_point(void *p)
|
|||||||
String8 addr_part = {0};
|
String8 addr_part = {0};
|
||||||
if(params.style_flags & DASM_StyleFlag_Addresses)
|
if(params.style_flags & DASM_StyleFlag_Addresses)
|
||||||
{
|
{
|
||||||
addr_part = push_str8f(scratch.arena, "%s%016I64X ", rdi != &di_rdi_parsed_nil ? " " : "", params.vaddr+off);
|
addr_part = push_str8f(scratch.arena, "%s0x%016I64x ", rdi != &di_rdi_parsed_nil ? " " : "", params.vaddr+off);
|
||||||
}
|
}
|
||||||
String8 code_bytes_part = {0};
|
String8 code_bytes_part = {0};
|
||||||
if(params.style_flags & DASM_StyleFlag_CodeBytes)
|
if(params.style_flags & DASM_StyleFlag_CodeBytes)
|
||||||
|
|||||||
Reference in New Issue
Block a user