>>
|
No. 702
Hi anon, you have two problems. The first is that, as you've probably noticed, your loop isn't getting executed.
The second problem is that you have some pointer/value-pointed-to confusion.
Try opening up your program in gdb and `define` the macro:
stepi
info reg
x/20i memset32
to step through memset32.
|