Tagged Questions
1
vote
1answer
100 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 ...
0
votes
2answers
77 views
GAS assembly snippet divides by 0, not sure why
I have the following function, involving a snippet of i386 assembly in GAS syntax:
inline int MulDivRound(
int nNumber,
int nNumerator,
int nDenominator )
{
int nRet, nMod;
...
2
votes
1answer
126 views
Assembling i386 code on x86_64
The following code does not work as expected:
.intel_syntax noprefix
.arch i386
.data
hello_world:
.ascii "Hello world!\n"
hello_world_end:
.equ hello_world_len, hello_world_end - hello_world
.text
...
4
votes
3answers
246 views
How to disassemble movb instruction
I am writing a disassembler and I was reviewing the instruction format (and doing some disassembling by hand) and I ran into an instruction that I can't seem to be able to decode.
The output for that ...
0
votes
2answers
121 views
Portable source code between 386 and amd64?
Goal: have a single assembler source file which will assemble both to x86 (i386) and to x86_64 (amd64)?
Is this possible, for instance with YASM?
4
votes
2answers
783 views
i386 vs. AMD64 ABI Differences
Where can I find all the differences in data types between the i386 & AMD64 Application Binary Interface(ABI)s ?
I know that the long type is 32-bit in i386 ABI & 64-bit in AMD64. Is this ...
0
votes
2answers
163 views
Emulating a 386
I'm applying for a contest that challenges people to write a program for a classical computer. I will apply with a PC/MS-DOS entry. The rules permit using a CPU up to a 386.
I'm been investigating a ...
0
votes
2answers
450 views
Scheme - Compilers - Backend to Frontend - Ghuloum
Do online solutions to Ghuloum's "Compilers - Backend to Frontend" exist? If so where?
(I am aware he has summarised but not answered it in this paper.)
(I'm also aware he has written Ikarus Scheme ...
2
votes
4answers
3k views
i386 different from x86? [closed]
While downloading Fedora Linux, they offer two options for download that I don't know the difference to: x86 and i386. So what'sthe difference between them?
2
votes
2answers
438 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 I try, I cannot get ...