AMD compatible assemblers for Linux
I have an AMD CPU开发者_如何学C and I've been looking for an AMD compatible assembler. Is there any advice for me?
Sultan
AMD chips are x86-compatible. A standard x86 assembler will be good enough.
The assembler that comes with gcc (gas) should do just fine.
I believe the most versatile assembler is yasm. But you can of course still use gcc’s intrinsics and inline assembly features for both x86 and x86_64 code.
Considering that lots of ASM tutorials are MASM-based, maybe you'd like to give JWASM a try. Yes, it also runs on Linux.
精彩评论