|
|
|
|
|
by dahfizz
1543 days ago
|
|
> Memory in C can be changed even if it is not listed in the inputs or outputs of the function. If we are going to nitpick syntax, nothing about `mov eax ebx` lists main memory as output. In fact, mov doesn't even have an 'output'. If you want to model mov as a function with the implicit output of "all of main memory", then you can do the same with any arbitrary C function. If you can't make that leap for C, then you can't make that leap for assembly. |
|