Posts by Viktor • 93 points
2 posts
-
6
votes1
answer135
viewsQ: Is the assembly code of a compiled program different from what was written?
I compiled this Assembly code global _main extern _printf section .text _main: push message call _printf add esp, 4 ret message: db 'Hello, World!', 10, 0 when I went to give u dump in code Assembly…
-
2
votes1
answer70
views