Forum: Assembly May 4th, 2009 |
| Replies: 6 Views: 396 can intel syntax be inlined into c code too?
btw, which is better to pick up to learn about computer security, understanding exploits like buffer overflow, etc?
and thanks for the input so far |
Forum: Assembly May 4th, 2009 |
| Replies: 6 Views: 396 i c, but intel syntax is more portable am i correct to say that? since i read that many more assemblers support intel than at&t
another question is why is it that nasm compiles my code just fine... |
Forum: Assembly May 4th, 2009 |
| Replies: 6 Views: 396 yea but isnt there an option in gas to enable it to read intel syntax now? .intel_syntax or something like that, how do I enable it? |
Forum: Assembly May 3rd, 2009 |
| Replies: 6 Views: 396 GNU nano 2.0.7 File: hello.asm
section .data
hello: db 'Hello World!', 10
... |