I need to write simple routine in iphone arm assembly (under xcode 4) (normal 32 bit not thumb) and have a problems (standalone asm routine do not link and with inline i have trouble with args and generall errors)
I need to assembly a function like
void clear_alpha(unsigned char*bits, int width, int height)
{ for(int j=0; j<height; j++)
for(int i=0; i<width; i++)
{
bits[j][i][4] = 0;
}
}
or so, could anyone help, tnx