Reputation: 145
I have assembly code in a text file and I don't know how to run it. I wish you can help me with detailed explanation. Thank you
Upvotes: 9
Views: 90290
Reputation: 496
Warning: never run code you don't know. In the case of assembly it can crash your system, or worse.
Assuming your assembly code is x86, And assuming it doesn't look like only rows of "01101010" or "de876f1a6bc37" And assuming that you are on Windows,
Again, be careful with assembly. You also might not get output, so you won't know the output of your program.
Upvotes: 9