This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| extern WinExec | |
| extern ExitProcess | |
| section .data | |
| cmd db "cmd.exe /c echo Hello from ASM", 0 ; const char cmd[] = "cmd.exe /c echo Hello from ASM"; | |
| section .text | |
| global main | |
| main: |