I have a very simple problem:
I want to store bytes in a 1d array in masm32 (I just started with it yesterday, used c# before), and then modify it with some simple math, but I didnt found anything useful in the net.
tiles BYTE 12 dup (0) ; array of 12 bytes with value 0
this is how i declare the array in the .data section, basically what I want to do in C# syntax is:
for(int i = 0; i < tiles.Length; i++)
tiles[i] += 2;