Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 455 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 455 Bytes

Measuring-ASM

Visual Studio 2022 C++

How to test it, in file archivo.txt

[Incremetar EAX]
40					;inc eax
C3					;ret

[Incrementar ECX]
41					;inc ecx
C3					;ret

Between [ you have a description, below the opcodes (machine code), don't forget to include the C3 (ret) and you can also add comments.

image