0
votes
0answers
19 views
Is there a way to create and output strings inside of a procedure in assembly?
I'm trying to create and print data inside of a procedure that wasn't created in the data section of the main procedure.
1
vote
1answer
31 views
Utilizing the LDT (Local Descriptor Table)
I am trying to do some experiments using different segments besides the default code and data user and kernel segments. I hope to achieve this through use of the local descriptor t …
0
votes
3answers
53 views
LOOP, LOOPE, LOOPNE?
Can anyone please explain me the difference between the assembly instructions LOOP, LOOPE and LOOPNE.
Thanks.
3
votes
4answers
90 views
Illegal instruction in ASM: lock cmpxchg dest, src
I've been messing around with some x86 assembly as its come up in a number of my classes. In particular, I've wanted to expose compare-and-swap (CAS) as a user function. This is wi …
3
votes
2answers
44 views
Which assemblers currently support the AVX instruction set?
I'd like to start and play with some AVX (advanced vector extension) instructions. I know Intel provides an emulator to test software containing these instructions (see this questi …
2
votes
4answers
105 views
How do I disassemble raw x86 code?
I'd like to disassemble the MBR (first 512 bytes) of a bootable x86 disk that I have. I have copied the MBR to a file using
dd if=/dev/my-device of=mbr bs=512 count=1
Any sugge …
2
votes
2answers
125 views
Differences Between ARM Assembly and x86 Assembly
Hello,
I'm now going to learn ARM Assembly, to develop for my Windows Mobile 5 iPAQ, but I have some questions:
What Are The Main Differences Between ARM Assembly and x86 Assem …
0
votes
3answers
115 views
x86 Assembly: What’s the main prologue and epilogue?
Hello,
I'm following this tutorial on x86 assembly. Every example so far uses what the author calls a "c-driver" program, compiled with the assembly module, for means of some "ini …
0
votes
3answers
37 views
Disassemble into x86_64 on OSX10.6 (But with _Intel_ Syntax)
I know of otool -tv, but I would much rather use the Intel syntax rather than AT&Ts, mainly to easily follow along in a book and not have to look over thousands of %'s and $'s. …
5
votes
6answers
245 views
Fastest way to convert binary to decimal?
I've got four unsigned 32-bit integers representing an unsigned 128-bit integer, in little endian order:
typedef struct {
unsigned int part[4];
} bigint_t;
I'd like to conve …
1
vote
3answers
59 views
Left Shift Overflow on 68k/x86?
I heard that the Motorola 68000 and Intel x86 architectures handle overflow from left shifting differently. Specifically the 68k LSL vs. the Intel SAL/SHL assembly instructions.
D …
1
vote
4answers
210 views
Translate a FOR to assembler
Hi everyone,
I need to translate what is commented within the method, to assembler. I have a roughly idea, but can't.
Anyone can help me please? Is for an Intel x32 architecture: …
1
vote
2answers
62 views
How to translate “pushl 2000” from AT&T asm to Intel syntax on i386
I'm trying to translate the following from AT&T assembly to Intel assembly:
pushl 2000
Now this compiles down to:
ff 35 d0 07 00 00 pushl 0x7d0
But no matter what …
6
votes
10answers
235 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
1answer
32 views
save inline asm register value to C pointer, can get it on GCC but not VC
hi there,
for the sake of simplicity ill just paste an example instead of my entire code which is a bit huge. while im porting my code to VC++ instead of using GCC i need to rewrit …
