Viewing profile — anarion
anarion
HN member- Joined
- Fri, May 24, 2013, 1:53 PM UTC
- HN karma
- 8
- Public activity
- 4 items
- HN profile
- View on Hacker News ↗
About anarion
No profile information was provided.
Recent public activity
-
comment
Comment #8671942
This lack the best option: ctrl-x a Don't bother having a external GUI, just use the built-in Ncruses one.
-
comment
Comment #7593911
Why kernel tutorials always say they need nasm. Gcc already comes with an assembler so simply use it instead of installing other softwares. And if you prefer intel syntax simply ad…
-
comment
Comment #5762971
No, a ret instruction would probably segfault, depending on the content of the stack. To terminate a program you have to use the corresponding system call. On linux : mov $1, %eax …
-
comment
Comment #5762867
Yes they are ! Global variables have static storage duration and are therefore default initialized. Be careful with the word 'static' which does not always correspond to the the ke…