describe how to exact bytes from memory
2015-11-27
my colleague suggested me to use this method to describe how to exact bytes from memory: using pairs of 2-numbers. The formula is that:
substring(x1)+y1
So if the formula is “1,2”, then x1 is 1, y1 is 2 . That mean it will exact 1 byte then jump to 2 offset and keep do it repeatedly.
If the formula is “1,2,3,4”, it will exact 1 byte, jump to offset 2, exact 3 bytes and jump to offset 4 again.