-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCopyToAsm-readme.txt
61 lines (38 loc) · 1.52 KB
/
CopyToAsm-readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
;=====================================================================================
;
; CopyToAsm-readme.txt
;
; v1.0.0.7 - Last updated 05/03/2018
;
;-------------------------------------------------------------------------------------
About
-----
CopyToAsm Plugin (x64) For x64dbg (64bit plugin)
by fearless - www.LetTheLight.in
Created with the x64dbg Plugin SDK For x64 Assembler
https://github.com/mrfearless/x64dbg-Plugin-SDK-For-x64-Assembler
Overview
--------
A plugin to copy a selected disassembly range in the x64dbg cpu view tab and convert to
a masm compatible style assembler code and output to clipboard or the reference view tab.
Features
--------
- Copy selected range to assembler style code.
- Outputs assembler code to clipboard or reference view.
- Adds labels for jump destinations.
- Adjusts jump instructions to point to added labels.
- Indicates if jump destinations are outside selection range.
- Code comments to indicate start/end and outside range.
- Options to adjust comments and label outputs.
- Format hex values as C style (0x) or Masm style.
- Registered commands: ctac/ctar
Notes
-----
- 29/01/2018 first release
- 03/02/2018 v1.0.0.1
- 07/02/2018 v1.0.0.2
- 09/02/2018 v1.0.0.3 - added call labels
- 02/03/2018 v1.0.0.4 - added c style/masm style hex values formatting
- 02/03/2018 v1.0.0.5 - added options dialog and registered commands
- 03/03/2018 v1.0.0.6 - call labels adjustments and _ prefix for hex only names
- 05/03/2018 v1.0.0.7 - add check for fastcall functions starting with '@'