saad
27th October 2005, 10:34
<Porting MS Visual C inline assembly code to Linux platform>
have someone any information regarding setting any flags or changing the assembly syntax to work in linux/ kdevelop?
i.e. i want to use, MSVC code like below :
void func()
{
int x,y,z;
__asm{
mov eax,edx;
.......
}
}in kdevelop !!!!
:confused:
is this the complete alternate way that i found @some other website
__asm { --> __asm__ (
eax --> %%eax
...
have someone any information regarding setting any flags or changing the assembly syntax to work in linux/ kdevelop?
i.e. i want to use, MSVC code like below :
void func()
{
int x,y,z;
__asm{
mov eax,edx;
.......
}
}in kdevelop !!!!
:confused:
is this the complete alternate way that i found @some other website
__asm { --> __asm__ (
eax --> %%eax
...