How to run another .exe file in assembly code?
I don't have a solid grasp of assembly and how to code in assembly. I just know some basic stuff which doesn't help me much. I need to be able to run an .exe file present somewhere in the computer. Like the equivalent of CreateProcess() or system("path\\file.exe") in c++, or os.startfile(), os.system() in python. I found something online but he was explaining in depth. I need the code snippet to achieve this. If it is not possible ( as I am just asking for the code ), is it possible to find out the assembly code with debugger by writing a simple program in python like, import os path = "path\file.exe" os.startfile(path) ( at the moment i dont have access to a computer so that I'd try and see if i can find out the code, thats why im asking instead of trying to do it in the first place )