S
sfx1999
Guest
What assembler do you prefer? I am learning it and am having some problems with some assemblers over others (mainly being that it is hard to find libraries).
A lot of things would break if you couldn't align data.By libraries, I mean it is almost impossible to find GLUT libraries and such. I've looked into the GNU assembler; I didn't like the syntax and it lacks the ability to align data, which I believe SSE requires.
with gcc: just pass the -msse flag. I'm pretty sure there's a -msse2 flag, and probably an -msse3 flag as well.Unless it's dealing with SSE SSE2 SSE3 or mmx instructions.
I never said to completely ignore learning an assembly language. It's good to understand the architecture of the machine you're working with - but that doesn't mean you should ever DO anything in assembly.However I recomend not jetisoning knowledge of the low level machine because 'The compilor will do a better job'.