diff options
-rw-r--r-- | future-of-pwning-1.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/future-of-pwning-1.md b/future-of-pwning-1.md index f1b56e6..b3d1862 100644 --- a/future-of-pwning-1.md +++ b/future-of-pwning-1.md @@ -162,9 +162,10 @@ int8 buf[buffersize] // input buffer bss end ``` +So we can statically allocate memory in the `datap uninitialized` section. + For storing of return values we can learn (again from the examples) that it's stored in `r0`. -So we can statically allocate memory in the `datap uninitialized` section. Now by modifying the `hello.as` program it's quite straight forward to implement our solution: ```asm %buffersize = 256 |