|
|
|
|
|
by konjin
1983 days ago
|
|
There are at least three levels of indirection between memory and registers and there is no language that allows you to access that directly. It lets you see more of the stack but not all of it. Before I coded in assembly for example I had no idea why string operations in C were so lacking compared to everything else. When you realize that you are literally dealing with bytes in an array of variable length the limitations make a lot more sense. |
|