![]() |
|
#1
|
|||
|
|||
|
JumpCalculator
JumpCalculator
- compute hexadecimal bytes of jumps. |
| The Following 6 Users Say Thank You to CodeCracker For This Useful Post: | ||
Fyyre (12-21-2022), pnta (12-22-2022), retro (12-19-2022), riverstore (11-04-2025), Vosiyons (12-19-2022), wilson bibe (12-19-2022) | ||
|
#2
|
||||
|
||||
|
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); ```
__________________
EnJoy! |
| The Following 2 Users Say Thank You to Jupiter For This Useful Post: | ||
MarcElBichon (08-30-2025), riverstore (11-04-2025) | ||
|
#3
|
|||
|
|||
|
Fixed the above error. Thanks for reporting it.
|
| The Following 6 Users Say Thank You to CodeCracker For This Useful Post: | ||
niculaita (09-05-2025), riverstore (11-04-2025), uranus64 (09-04-2025), user_hidden (09-04-2025), wilson bibe (09-04-2025), zeuscane (09-04-2025) | ||
|
#4
|
|||
|
|||
|
JumpCalculator_X64Support
What's new:
- Added x64 support. |
| The Following User Gave Reputation+1 to CodeCracker For This Useful Post: | ||
user1 (09-21-2025) | ||
| The Following 4 Users Say Thank You to CodeCracker For This Useful Post: | ||
niculaita (09-28-2025), riverstore (11-04-2025), user1 (09-21-2025), user_hidden (09-21-2025) | ||
![]() |
|
|