6
votes
9answers
192 views
What is the best way to go about writing a simple x86 assembler?
I'm interested in writing an x86 assembler for a hobby project.
At first it seemed fairly straight forward to me but the more I read into it, the more unanswered questions I fin …
0
votes
0answers
17 views
openssl’s md5 in linux kernel
I am trying to get openssl's md5 hash function running in the linux kernel.
Yes, I know about the kernel's crypto API. I am looking at openssl's md5 for performance reasons.
I c …
1
vote
2answers
33 views
CPUID implementations in C++
Hi,
I would like to know if somebody around here has some good examples of a C++ CPUID implementation that can be referenced from any of the managed .net languages.
Also, should …
-3
votes
1answer
85 views
Assembler code in C [closed]
I am doing ma mini project on assemblers and the programming language that i am familiar rite now so can any one provide me with the assembler code written in C or C++ its because …
12
votes
12answers
751 views
Fastest way to scan for bit pattern in a stream of bits
I need to scan for a 16 bit word in a bit stream. It is not guaranteed to be aligned on byte or word boundaries.
What is the fastest way of achieving this? There are various bru …
5
votes
1answer
100 views
Debugging disassembled libraries with gdb
Hello, in Linux and Mac OS X I can use stepi and nexti to debug an application without debugging information.
On Mac OS X gdb shows the functions that are called inside the libra …
55
votes
31answers
3k views
When is assembler faster than C?
One of the stated reasons for knowing assembler is that, on occasion, it can be employed to write code that will be more performant than writing that code in a higher-level languag …
2
votes
6answers
155 views
TI DSP programming - is C fast enough or do I need an assembler?
I am going to write some image processing programs for Texas Instruments DaVinci platform. There are tools appropriate for programming in the C language, but I wonder if it is real …
1
vote
2answers
51 views
How to compile multiple files together with ml in assembly x86?
Hi,
I'm working in Assembly x86 in 16bits.
I have three files that need to share 'variables between them' - basically, the data segmant. When I compile them, as in the following:
…
1
vote
1answer
75 views
XORing at the address stored in EAX
How can you XOR the value stored in EAX?
The problem is at this line:
xor eax, key
EAX contains the address of the value i want to XOR. How can I accomplish this? I though it w …
15
votes
5answers
528 views
C++ try/throw/catch => machine code
Mentally, I've always woundered how try/throw/catch looks behind the scenes, when the C++ compiles translates it to assembler. But since I never use it, I never got around to check …
2
votes
2answers
115 views
How to include a newline in a C++ macro or how to use C++ templates to do the same ?
I saw the following question:
http://stackoverflow.com/questions/98944/how-to-generate-a-newline-in-a-cpp-macro
Let me give a brief requirement of a need in newline in a C++ prepr …
0
votes
2answers
95 views
Inline assembly in C: Dynamic registers
I'm trying to inline some assembly code in my C code:
__asm { mov reg,val };
The problem: I want to define the register and value dynamically.
I know the 'val' can be a variable …
2
votes
3answers
203 views
Whats the best resource to learn Assembly language for PIC microcontroller’s
I'm going to start working on a project where I need to have a decent understanding of Assembly language for the PIC microcontroller's. I'm intimately familiar with C/C++, so I kn …
2
votes
3answers
174 views
Writing an z80 assembler - Lexing ASM and building a parse tree using composition?
Hi guys, I'm very new to the concept of writing an assembler and even after reading a great deal of material, I'm still having difficulties wrapping my head around a couple of conc …
