3
votes
3answers
119 views
C memory management for Cross-platform VM.
Hi all, I asked a question about C-type sizes which I get a pretty good answer but I realized that I may not formulate the question very well to be useful for my purpose.
My backg …
1
vote
2answers
25 views
What is the purpose of the sorted bit vector field in the “~” Metadata header in a .NET assembly?
According to the Partition II metadata, it says that the valid field is a bitmask that notes which CLR metadata tables are present in a .NET executable--but what I can't figure out …
4
votes
7answers
259 views
Size of int in C on different architectures
I am aware that the specification of the C language does not dictate the exact size of each integer type (e.g., int).
What I am wondering is: Is there a way in C (not C++) to defi …
22
votes
22answers
2k views
How are Operating Systems “Made”?
Creating an OS seems like a massive project. How would anyone even get started?
For example, when I pop Ubuntu into my drive, how can my computer just run it?
(This, I guess, is …
0
votes
6answers
236 views
C++ class to access bytes/words of an unsigned integer
union LowLevelNumber
{
unsigned int n;
struct
{
unsigned int lowByte : 8;
unsigned int highByte : 8;
unsigned int upperLowByte : 8;
unsigned int upp …
1
vote
1answer
195 views
Why isn’t WH_MOUSE hook global anymore?
I have this global mouse hook setup in a DLL that watches for mouse gestures.
Everything works perfectly but with a hook set for WH_MOUSE_LL which is a low-level hook and one that …
0
votes
0answers
92 views
GNU LD Script to catch C++ group / dynsym Sections
I'm maintaining a tool which can convert ELF32 relocatables to RDOFF2 format.
For this process to work I need to pre-link the input files currently using the ld-script shown below: …
4
votes
5answers
430 views
CPU Emulation and locking to a specific clock speed
If you had read my other question, you'll know I've spent this weekend putting together a 6502 CPU emulator as a programming exercise.
The CPU emulator is mostly complete, and see …
1
vote
8answers
505 views
What is INT 21h?
Inspired by this question
http://stackoverflow.com/questions/1237489/how-can-i-force-gdb-to-disassemble
I wondered about the INT 21h as a concept. Now, I have some very rusty kno …
3
votes
3answers
123 views
Getting all static (interned) strings from a .net assembly (dll)
I wish to get a list of all strings that are used in a .net assembly including the “static” values that local variables are set to, parameters passed to methods, fields at set to, …
0
votes
1answer
85 views
low level, global keyboard hook in wince
I'm trying to make a small tool will run in background & capture all key events.
For instance it will do a job like: when user types 'uu' on any textbox it will turn 'uu' to 'a …
7
votes
3answers
266 views
low level programming: How does the OS start a new thread/process?
Whenever the bootloader loads the operating system there is presumably only ONE program flow active, right? This would mean, one processor holds the instruction pointer and execute …
0
votes
2answers
106 views
Cocoa memory editing inspection
How would I go about editing the memory of other applications using Cocoa? I know the editing has to be done as root, but how would I do it in the first place?
1
vote
7answers
334 views
Learning MIPS as a second assembly language?
Hello,
I know x86 Assembly (and have worked with FPGA etc') , Never wrote for a RISC, I have the opportunity to take a course in MIPS,
but I'm busy as it is, so my question is,
I …
1
vote
11answers
359 views
What fast low-level languages can you recommend?
I have became interested in C-like languages for performance computing. Can you recommend some alternative programming languages which have the following attributes:
must be clos …
