Tagged Questions
1
vote
1answer
96 views
Implementing cat>fileName command in NASM
I try to implement cat>filename command in NASM in Ubuntu 11.04 using system calls. My program is compiled successfully and run successfully (seems so). But whenever I tried to fire cat filename ...
-2
votes
2answers
49 views
What is the range of int and long as they both are of 4 bytes
How 4 bytes of long have wider range than int?
Source: http://lwn.net/images/pdf/LDD3/ch11.pdf
3
votes
1answer
87 views
Linux x86/x64: Turn off misaligned data fixups
I've got some code I'm testing on Linux x86/x64. I want to turn off the automatic fixing of misaligned data to simulate what would happen on an ARM processor.
On Windows, I can do it with ...
2
votes
3answers
3k views
/usr/include/gnu/stubs.h:7:27: error: gnu/stubs-32.h: No such file or directory
I am trying to install roccc 2.0. I have installed required packages. Now while installing it, it is giving me this error:
/usr/include/gnu/stubs.h:7:27: error: gnu/stubs-32.h: No such file or ...
7
votes
1answer
637 views
How to map 1GB (or more) of physical memory
I have a setup with 2GB of memory and I would like to map 1GB (or more) of physical memory into user space virtual address. It is in theory possible since with 32bits setup, 3GB of virtual address is ...
0
votes
0answers
221 views
Smallest Stack Frame Size
I'm currently doing the Capture-the-Flag event by Stripe (you should check it out if you haven't seen it yet). The event requires you to look at disassembled executables a lot, and my knowledge of asm ...