Exetools

Exetools (https://forum.exetools.com/index.php)
-   Community Tools (https://forum.exetools.com/forumdisplay.php?f=47)
-   -   JumpCalculator (https://forum.exetools.com/showthread.php?t=20381)

CodeCracker 12-17-2022 23:46

JumpCalculator
 
2 Attachment(s)
JumpCalculator
- compute hexadecimal bytes of jumps.

Jupiter 08-30-2025 14:36

Short jump display bug
 
There is a bug in display routine.
App shows `EB2` instead of `EB02`.

File: JumpCalculatorDlg.cpp
Line: 444

Current code:
Code:

```c
char buffer[50];
if (ShortJump)
        sprintf(buffer, "%s%X", opcode, computed & 0x0FF);
else
        sprintf(buffer, "%s%04X", opcode, Endian_DWord_Conversion(computed));

SetDlgItemText(IDC_EDIT2, buffer);
```

Mask for `sprintf` should be "%s%02X" instead of "%s%X".

CodeCracker 09-04-2025 01:31

1 Attachment(s)
Fixed the above error. Thanks for reporting it.

CodeCracker 09-20-2025 23:29

JumpCalculator_X64Support
 
1 Attachment(s)
What's new:
- Added x64 support.


All times are GMT +8. The time now is 05:06.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2026, vBulletin Solutions, Inc.
Always Your Best Friend: Aaron, JMI, ahmadmansoor, ZeNiX