Anyone who can tell me where to find documentation of the AT&T assembler syntax?
--
------------------------------------------------
SILENCE IS FOO!
-Daffy Duck
Anyone who can tell me where to find documentation of the AT&T assembler syntax?
--
------------------------------------------------
SILENCE IS FOO!
-Daffy Duck
1. inline assembler error - porting Intel syntax to AT&T syntax
// Intel syntax
void x( int *p ) {
int example;
__asm {
mov esi, p
mov [ esi ], ebx
mov [example], eax
}
I'm porting the code to GCC, but got error
I couldn't access the data which *p points to, and got error like this:
- error, undefined reference to `p'
I couldn't access varible example, and got error like this:
- error, undefined reference to `example'
and no error if it is a global varible
Can someone help me?
2. Fast parallel port support?
3. where to download "AT&T System V/386 assembler syntax manual"
4. Problem with SLS 1.03 and ATI
7. AT&T syntax Assembler tutorial
8. interesting linux-ppc jdk bug
9. intel Syntax -> AT&T Syntax
10. AT&T asm syntax but not IBM asm syntax?
11. Grep-ing for Constants (Re: Assembler Syntax...)
12. i386 UNIX 'as' Assembler syntax
13. Linux i386 assembler with Intel/Microsoft syntax?