How do I convert this to assembly?
static unsigned char i, j, aResult[15]; /* Define Vars */
static const unsigned char aData[]={0xA0,0x1F,0xA5,0xB2,0x00} ; /* Define Data */
/* Initialize aResult array to all zeros */
for(i=0;i<15;i++){
aResult[i] = 0;
}
i=0; /* Set index for aData array */
while(aData[i] != 0){ /* While not EOS do */
if((aData[i]>= 0xA0) && (aData[i] <= 0xAF)) /* Check if between $A0 and $AF */
{ j = aData[i] ‐ 0xA0; /* if so, increment result array */
aResult[j]++;
}
i++; /* Look at next byte in aData array */
} /* End While loop */
/* Add SPIN Code here */