Tagged Questions

3
votes
3answers
244 views

Low level programming: How to find data in a memory of another running process?

I am trying to write a statistics tool for a game by extracting values from game's process memory (as there is no other way). The biggest challenge is to find out required addresse …
4
votes
3answers
96 views

Allocation latency seems high, why?

I have a (java) application that runs in a low latency environment, it typically processes initial instructions in ~600micros (+/- 100). Naturally as we've moved further into the m …
2
votes
5answers
256 views

What’s the most efficient way to compare two blocks of memory?

I need a comparison function for blocks of memory for doing binary searches on arrays of bytes in the D programming language. It does not need to have any useful semantics. It on …
4
votes
9answers
471 views

Dissertation about the Dangers of Modern Day Abstractions of Software Development

I am currently reading for a BSc. in Software Development, and the time has come for me to start thinking about a topic for my thesis. I have recently started learning C by myself …
0
votes
4answers
88 views

Can I put LowLevelMouseProc and LowLevelKeyboardProc in the main EXE?

Global Windows hooks must be in a DLL because the hook is going to be called in the context of a different process, so the hook procedure's code must be injected into that process. …
20
votes
26answers
2k views

Why do you program in assembly?

I have a question for all the hardcore low level hackers out there. I ran across this sentence in a blog. I don't really think the source matters (it's Haack if you really care) …
9
votes
8answers
447 views

Safer Alternatives to the C Standard Library

The C standard library is notoriously poor when it comes to I/O safety. Many functions have buffer overflows (gets, scanf), or can clobber memory if not given proper arguments (sc …
2
votes
3answers
92 views

Inline Assembler: What scratch registers can be used?

When inserting inline assembler into a function in a C-like language, what is the convention about what registers you're allowed to use for scratch? Is it the compiler's responsib …
16
votes
14answers
838 views

Am I “wasting” my time learning C and other low level stuff ?

I have just recently started learning C and the reason I did that was because frankly, I consider myself to be of a "less-developer" than the people who know and work with C. Thus …
1
vote
1answer
130 views

Low-level keyboard hook issue : Keyboard state losed when application is not focused (Delphi)

Hello, I've been asked to develop a new application that will work along side the existing one. Both application will wait for a barcode reader input. I don't want our operator to …
0
votes
4answers
56 views

How do memory mapped devices prevent RAM from responding to read operation?

Assume we have a memory mapped device taking a certain address space. The CPU tries to read something from the device, so it tries to read a certain word in that address space. Wh …
1
vote
3answers
136 views

Help understand C Stack

I am trying to understand low-level memory manager in C especially Stack. As I was told, when a function is called, a return address was push on a stack. Then local variables is lo …
1
vote
1answer
96 views

How to enable ARMv6 unaligned access on WinMobile6?

ARMv6 introduce a great feature - unaligned memory access, which make some things in code much more simplier and faster. But microsoft gives API for it only in winCE6. And most PDA …
2
votes
5answers
204 views

x86 equivalent for LWARX and STWCX

I'm looking for an equivalent of LWARX and STWCX (as found on the PowerPC processors) or a way to implement similar functionality on the x86 platform. Also, where would be the best …
0
votes
9answers
207 views

Why is JavaScript sometimes viewed as a low level language?

Inspired by this question. I commonly see people referring to JavaScript as a low level language, especially among users of GWT and similar toolkits. My question is: why? If you …

1 2 3 next
15 30 50 per page