Hi,
I am writing an C code and need to write the same code in assembly.
I have two buffers. src and dest. both buffers are charatcer buffers.
i need to load there buffers using assembly how can i do it
my src buffer has ten elemnts
void(char *src,char *dst)
{
BYTE a,b;
int i;
b=10;
for(i=0;i<=10;i++)
{
a=*src++;
a=a+b;
*dst++= b;
}
}
How can this be done.
chaps555