Hi, So i am new to NASM, and I am trying to add the contents of two arrays and place those contents in another array. I just want to know how do i store the third array onto a stack if i already used esi and edi for the first two arrays. Also, so for what I have done is add the two arrays in loop with esi and edi and placed those contents into AL since they are bytes. But how do I get the third array that is filled with 0s to increment to the next integer so that the sum of each elements can go in there? i just have
mov bl, [Array3]
but that will only hit the first element of the six. How do i traverse through this array if I am already using and incrementing esi and edi for array 1 and 2.
Sorry if that didn't make sense.
Also, my teacher has his own function library like Irvine32 but for linux. To print an array he has a function to call but would I have to call it inside the loop?
Thanks!