would anyone be able to help me convert this c function to an assembler function? Any help would be greatly appreciated thanks.
void load(char x[][1000], int collum, int row, char ln)
{
int i =0;
int j =0;
for( i = 0; i < row; i++ )
{
for( j = 0; j < collum; j++)
{
scanf("%c",&x[i][j]);
}
scanf("%c",&ln);
}
}