how to sum two array elements in assembly?
Advertisements (assembly code using visual studio syntax) I know it’s an obvious question but I’m new to assembly. I’m having problems to understand how does esi register work in an exercise like this: #include <stdio.h> int main() { int a = 0; int b[5] = { 1, 2, 3, 4, 5 }; int *c; c… Read More how to sum two array elements in assembly?