Would there be any other method on how to go about doing this without having to use the Intel manuals? Would it be possible to simply compile small and short ASM program using MASM64 and then using a hex editor to view the machine code thereafter ?
Asked
Active
Viewed 89 times
2
-
1While using a hex editor would work, there's a lot of junk inside an exe. As an alternative, perhaps [this](https://defuse.ca/online-x86-assembler.htm)? – David Wohlferd Jul 02 '22 at 21:01
-
1Usually the easiest thing is to use a disassembler on the resulting .obj or .exe, such as objconv (https://agner.org/optimize/). MASM might also have a command-line option to make a "listing" output file which has machine code next to your source lines. – Peter Cordes Jul 02 '22 at 21:03
-
1https://stackoverflow.com/questions/4548763/compiling-assembly-in-visual-studio – Hans Passant Jul 02 '22 at 21:36
-
1@PeterCordes I've downloaded the utility and hopefully it work for me. Thank you. – Jkf1298 Jul 03 '22 at 01:01
-
1@DavidWohlferd thank you for the link it should work for myself in the meantime. – Jkf1298 Jul 03 '22 at 11:21
1 Answers
0
You can use the Disassembly window in Visual Studio while debugging. See Disassembly Visual Studio

Danny Cohen
- 77
- 10