Linux x86 Assembly Language in Docker? - Day of Curiosity #22
Channel:
Subscribers:
918
Published on ● Video Link: https://www.youtube.com/watch?v=5xnfYmgbRRU
Today, I write, assemble, link, and run an x86 (Intel) assembly language program inside a Docker container.
Source for hello.asm: https://tldp.org/HOWTO/Assembly-HOWTO/hello.html
Other helpful tips: https://gist.github.com/yellowbyte/d91da3c3b0bc3ee6d1d1ac5327b1b4b2
= General build steps =
- nasm -f elf64 hello.asm
- ld hello.o -o hello
- ./hello
That's it! See the video for details.
Don't forget, you can always email me with questions or feedback at jdp@jeremypedersen.com ^_^
Other Videos By Jeremy Pedersen
Tags:
Linux Assembly
Intel Assembly
x86 Assembly
NASM
Assembly Language