Tagged Questions
1
vote
1answer
97 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
1answer
63 views
GNU Linker and architecture i386
So I'm running on OS X and I want to link two Mach-O objects i386.
The first is generated from NASM (it's an assembly file)
nasm -f macho -o kernel.o kernel.asm
The second is generated from GCC
...
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
125 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
...
-3
votes
2answers
275 views
add 2 numbers in assembly [closed]
I want to add two numbers but there is a problem that I cant find it please help me!
Thanks
.model small
.stack
.data
data1 dw 6
data2 dw 8
.code
main:
mov ax,@data
mov ds,ax
mov ...
0
votes
1answer
194 views
NASM - Selection sort implementation doesn't work
The problem with segmentation fault has been solved, however there still remains a question of faulty algorithm itself which sorts numbers correctly but puts some of the biggest ones on the top of the ...
4
votes
3answers
243 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 ...
1
vote
2answers
424 views
nasm and gcc: 32 bit linking failed (64 bit Mac OS X)
I've just compiled a assembley file with nasm this way:
$ nasm -f elf somefile.asm -o somefile.o
After that I want to link somefile.o to a programm with gcc
$ gcc -m32 somefile.o -o someprogramm
...
0
votes
1answer
157 views
What kind of error is this “c(.text+0x7): relocation truncated to fit: 8 .data”
I was compiling/linking my program
i386-gcc -o output.lnx func.opc mainc.opc
and I kept getting that error. I honestly have no idea what this means.
Any clue?
thanks,
1
vote
2answers
145 views
strlen in assembly, off by 1?
I wrote the following assembly function callable from C to count the length of a null-terminated string. But for some reason, the count is always off by +1. I can't figure out why. Any clue?
...
-3
votes
2answers
718 views
Assembly Language Integer registers
I don't understand what this assembly instruction does. What is its effect and why?
imull $16, (%eax, %edx,4)
The initial values of the registers are
%eax= 0x100x
%edx= 0x3
0
votes
0answers
222 views
Smallest Stack Frame Size
I'm currently doing the Capture-the-Flag event by Stripe (you should check it out if you haven't seen it yet). The event requires you to look at disassembled executables a lot, and my knowledge of asm ...
0
votes
1answer
439 views
Understanding assembly recursive function
I am learning assembly and I have this function that contains some lines I just don't understand:
. globl
. text
factR:
cmpl $0 ,4(% esp )
jne cont
movl $1 ,%eax
ret
cont :
movl 4(%esp),%eax
...
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?
2
votes
4answers
3k views
Division and modulus using single divl instruction (i386, amd64)
I was trying to come up with inline assembly for gcc to get both division and modulus using single divl instruction. Unfortunately, I am not that good at assembly. Could someone please help me on ...
0
votes
2answers
162 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
468 views
Creating plain binary data (no ELF, symbol table etc) using an assembler
I want to turn a data-only input file, i.e. something like this:
.data
.org 0
.equ foo, 42
.asciz "foo"
label:
.long 0xffffffff
.long 0x12345678
.byte foo
.long label
.long bar
.equ bar, ...
0
votes
2answers
449 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
2answers
436 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 ...
