It turns out that since Glitch containers have gcc installed, you can run Unix Assembly (x86-64).
Steps:
- Create a file (filename.S)
- Add your Assembly code.
- Run
gcc hello.S -no-pie -o hello && ./hello
in the terminal
There you have it!
It turns out that since Glitch containers have gcc installed, you can run Unix Assembly (x86-64).
Steps:
gcc hello.S -no-pie -o hello && ./hello
in the terminalThere you have it!