This is a repo for help with learning assembly. Listed below are links to different helpful resources.
You can try to install nasm on windows using visual studio or some other way, but I found the easiest way to utilize assembly was to ssh into the IUS ada server. If you need more information on this, please feel free to reach out to me.
Alternatively, you could do something like this video.
- Specify your cpu architecture using
nasm -f elf64 -o <outputfile>.o <asmfile>.asm
additionally you can specify-f elf32
for 32 bit execution