AT&T Syntax is an assembly syntax used in UNIX environments, that originates from AT&T Bell Labs. It is descended from the MIPS assembly syntax.
0
votes
1answer
17 views
AT&T XML speech recognition
I have to recognize some alternative rules, but I don't know how to do a mutual exclusion.
For example, if I want to recognize "play", "stop", or "set 1", "set 2", how can I do? I tried something like ...
0
votes
1answer
33 views
Segfault when trying to reuse register x86 assembly
I have the following assembly code, which is meant to be a simple implementation of the C-function sprintf(). So far, it works fine in parsing %c and %%, and I am now working on implementing %s, it ...
5
votes
1answer
58 views
Why does switching from AT&T to Intel syntax make this tutorial segfault using GAS?
I'm working through some of the tutorials on http://www.ibm.com/developerworks/linux/library/l-gas-nasm/index.html to familiarize myself with x86/x64. This tutorial code compiles and runs without a ...
3
votes
2answers
105 views
Understanding C disassembled call
I want to learn about C calling convention. To do this I wrote the following code:
#include <stdio.h>
#include <stdlib.h>
struct tstStruct
{
void *sp;
int k;
};
void ...
0
votes
1answer
45 views
Running out of registers and having trouble in Y86
I am currently writing functions using an educational assembly language called Y86, AT&T syntax and am trying to accomplish/get around something this doesn't support. I want to add a number to a ...
0
votes
2answers
50 views
Writing into .long in assembly
I have issue with writing into allocated memory. Here's the code.
total: .long 1 # my memory
movl total, %eax # I believe I'm copying address of total into eax
movl $53, %esi # set ...
0
votes
0answers
74 views
How to make copies and transverse words in assembly x86 at&t syntax
I am working on a program that takes a word as input and then replaces every second letter with a !, and it also makes a copy of the word that was entered so later on it could be used and not the ...
0
votes
1answer
40 views
“suffix or operands invalid for 'shr'”
I'm trying to get rid of the lower bits (before doing a popcnt) in a register, but can't seem to get the syntax for the instruction right. I want to clear the lower %rdx bits from the value in %r8d. ...
3
votes
2answers
90 views
How to “remove” bytes at the end of a SSE register?
For a uni assignment, I need to write a function which counts the number of spaces in a string (defined by a pointer and an index) in assembly. There's a requirement to use pcmpeqb for this (that is, ...
0
votes
1answer
211 views
Porting 16-bit DOS x86 assembly to 32-bit Linux x86 assembly
I found code in 80836 DOS assembly that I'd like to port to 32-bit Linux assembly, using AT&T syntax.
I found site that explains some differences but only about registers. EX:
cmp al, 'A' -> ...
-4
votes
3answers
80 views
Learning Assembly Language [closed]
I am attempting to learn assembly language, but i need help with learning what each command's purpose is. Following is a program where they are used.
push %ebp
mov %esp,%ebp
sub ...
0
votes
1answer
91 views
Segfault on function termination
I have a function written in 64 bit x86 assembly (AT&T syntax for gcc and GAS) which performs some SSE2 operations. I've checked the result by using gdb with disassembly and looking at the ...
2
votes
1answer
136 views
What is an assembly-level representation of pushl/popl %esp?
C++
ATT Assembly
I'm trying to understand the behavior of the following two instructions:
pushl %esp
And:
popl %esp
Note that they store the computed value back into %esp.
I'm considering ...
1
vote
2answers
57 views
Please verify meaning of AT&T Assembly line
This line is not very clear to me (I'm very new to Assembly):
movsbl 0xffffffff(%edx,%ebx,1),%eax
I understand mov, but movsbl is a new one to me. In a simpler example that uses foo instead of ...
1
vote
1answer
75 views
Understanding ATT Assembly Language
C version:
int arith(int x, int y, int z)
{
int t1 = x+y;
int t2 = z*48;
int t3 = t1 & 0xFFFF;
int t4 = t2 * t3;
return t4;
}
ATT Assembly version of the same program:
x at ...
0
votes
2answers
102 views
ATT Assembly (arithmetic and logical operations)
// Code I'll be working with
int shift_left2_rightn(int x, int n)
{
x <<= 2;
x >>= n;
return x;
}
Question 1. Left shift = SAL and SHL. My book says they have the same ...
0
votes
1answer
38 views
ATT assembly language arithmetic
Address Value Register Value
0x100 0xFF %eax 0x100
0x104 0xAB %ecx 0x1
0x108 0x13 %edx 0x3
0x10C 0x11
Instruction ...
1
vote
1answer
110 views
Understanding ATT Assembly (immediate)
lets say i have the following assembly lines
movl $-1, %edi
movl $1, %edx
What exactly am I storing into %edi/%edx registers.
Basically if I were to convert this code into a C program, would I ...
1
vote
1answer
239 views
How does “mov (%ebx,%eax,4),%eax” work?
Been working on an assembly assignment, and for the most part I understand assembly pretty well. Or well at least well enough for this assignment. But this mov statement is tripping me up. I would ...
1
vote
1answer
111 views
What does 0x4 from cmp 0x4(%esi),%ebx assembly instruction mean?
What does 0x4 from the following assembly line mean?
cmp 0x4(%esi),%ebx
je ...
When this compare returns equal and the jump is performed the registers have the values:
%esi 0xe944d6d0
%ebx ...
6
votes
2answers
111 views
How much space is allocated by subtracting from %esp in a function call?
C++, ATT Assembly
I have the following assembly code:
push %ebp
mov %esp, %ebp
sub $0x28, %esp
(...)
My textbook claims that by subtracting 0x28 from the %esp (as part of the formation of the ...
1
vote
2answers
61 views
What does this assembly code do and why is it used?
ATT syntax.
I've noticed that library routines in C often use the following snippet of assembly code:
call next
next:
popl %eax
What value is %eax storing here and why is it getting popped?
...
0
votes
1answer
63 views
How to compute switch case values from assembly code?
ATT syntax.
I'm trying to understand a practice problem we talked about in class.
We were given the following partial assembly code for a switch statement:
movl 8(%ebp), %eax
addl $2, %eax
cmpl ...
0
votes
3answers
100 views
What is this piece of assembly code into C?
ATT syntax.
I'm trying to understand what the following piece of assembly code does:
movl 8(%ebp), %edx
movl $0, %eax
testl %edx, %edx
je .L7
.L10:
xorl %edx, %eax
shrl %edx
jne .L10
.L7:
...
2
votes
1answer
101 views
GCC-generated asm :: Where did I assign to that register? [duplicate]
Possible Duplicate:
Not sure why we add the registers %rdx and %rax when the assembly code has been using %eax and %edx
all.
So, here's my minimal program:
int main(int argc, char * ...
0
votes
2answers
319 views
Assembly (AT&T 32 bit) scanf questions
I want to write the following C code in Assembly:
int main(void)
{
int x,y;
scanf("%d%d",&x,&y);
printf("%d%d",x,y);
return 0;
}
Firstly I tried it with only one integer to ...
0
votes
2answers
192 views
Translating a while statement from c to assembly using yacc
I'm trying to write a yacc source file for a program that will convert a simple while statement from C language (let's say ANSI 89) to assembly at&t.
The following is my grammar, the central part ...
0
votes
0answers
106 views
assembly at&t get 2 diffrent int from user and print them out- cant seem to work. insted it print twice the second number
example input output:
input
34 54
expected output:
54
34
output:
54 54
This is the code with notes!
#This is a simple "matematical function" program
.section .rodata #read only data ...
0
votes
1answer
121 views
Gnu AS equivalent of ORG in NASM
What would be the equivalent directive in GAS for the ORG (origin) directive in NASM?
EDIT: A warning to all: .org is not the origin directive, it seems to instead pad the assembled file with 00 up ...
1
vote
2answers
130 views
How to interpret this address -0x80(%rbp,%rax,4)
I'm currently trying to learn assembly language (and the effects of different compiler options) by analyzing simple C code snippets. Now I stumpled across the following instruction:
mov ...
2
votes
1answer
160 views
How to move AT&T Style Assembly code over to Visual Studio and Intel Style Syntax?
I have a very specialized file written in x86-64 assembly for Linux, compiled under GCC. I need to move that code over to a Visual Studio project and mll64.exe wants the assembly file to be in Intel ...
0
votes
1answer
165 views
Snake game in assembly
I'm trying to make a small IA32 game(AT&T), the problem I'm facing at the moment is I don't know how/where to store the snakes body and the "apples" to be able to check for collisions.
The snakes ...
-1
votes
1answer
259 views
Assembly (,%eax,4)
If one of my command lines says:
jmp *0x804a180(,%eax,4)
what does that mean? I ask specifically because there is no value before the first comma and I'm not sure exactly what the * before the ...
3
votes
1answer
973 views
mov %eax,(%esp)
What is the difference between the following statements?
mov %eax,%esp
mov %eax,(%esp)
I'm working on diffusing a binary bomb and am having trouble with a few of the mov and leal commands early on ...
0
votes
1answer
149 views
Garbage values when assigning values to two dimensional array
I'm completely new to assembly and I've encountered an issue when assigning values to my two dimensional "array". My array is a .space named screen and is allocated with HEIGHT * WIDTH * 4, so there ...
0
votes
1answer
133 views
Copying the value of a pointer to another new pointer in Assembly
Update: I'm allowed to use strcpy in my code.
I'm trying to write an implementation of strdup in x86 assembly (att syntax), converting the code in C to code in Assembly.
Code in C:
char* func( int ...
0
votes
1answer
132 views
GAS does not recognise register %ip
In my 16bit program GAS is balking at the instruction:
movw %ip, %dx
I find this strange as moving a segment register works fine, for example:
movw %ss, %ax
The full error message is:
Error: ...
0
votes
2answers
54 views
'C' appearing as 2 different values?
I'm trying to compare 2 different char in assembly(calling assembly function in C program). One of the char belongs to a struct and the other is passed in when calling the function.
struct node {
...
0
votes
2answers
346 views
movl in x86 assembly, intel-syntax
Just a short question.
Anyone knows if there is any way that I can do this in assembly?
movl $4, %ebx
movl (%ebx)(%esp), %eax
what I'm trying to do is basically create a loop that extras the next ...
4
votes
1answer
134 views
How to locate a variable correctly in AT&T assembly?
I am practicing to write a bootstrap using assembly (in AT&T syntax, and gnu/gas). The small program is assembled and linked, then copied to the first sector of a virtual disk. BIOS will load it ...
1
vote
1answer
167 views
What does leal (%eax, %eax) do?
What does leal (%eax, %eax) do? Does that multiply the contents at %eax * 2 since it has parens?
2
votes
2answers
189 views
x86 instruction meaning
I'm running through some code right now on gdb and I have no clue what these two instructions actually do. If anyone could help me out, I'd really appreciate it.
add -0x2c(%ebp, %ebx, 4), %eax
cmp ...
0
votes
1answer
649 views
Creating and calling function in x86 assembly (AT&T syntax)
Please give me a very simple example of creating a function and calling it in x86 Assembly (AT&T syntax). Actaully I am trying to create a function that computes factorial of a number. This is ...
1
vote
0answers
76 views
Position independent lib in assembly (AT&T syntax)
I'm implementing a compatibility library that should redirect certain function calls to a differently named function, typically in glibc.
This is what I do:
.text
.global compat_function
.extern ...
0
votes
1answer
199 views
Strcat in assembly
I'm trying to concatenate two strings in Assembly but I can't seem to get it working. I have the following piece of code:
.data
message: .asciz "message"
leading: .asciz "leading"
.globl main
...
2
votes
1answer
91 views
Jump not working
I'm currently busy making a small (with so far fixed questions) quiz in assembly (AT&T).
I designed a small menu which asks for the a certain input either 1 2 or 3
The problem is my cmpl doesn't ...
3
votes
2answers
626 views
Appending two string in x86 assembly
I'm currently working on an assignment in AT&T Assembly and now I have to append two strings:
message: .asciz "String 1"
before: .asciz "String 2"
I have really no idea how to do this or how to ...
3
votes
1answer
88 views
Loading a number into a register
I am currently busy with assembly and ran into the following problem:
I'm trying to get a number that has been typed into the eax register. First i present a string which asks for input and then ...
0
votes
0answers
284 views
Inline Assembly - AT&T Syntax - Error on LLVM compile (not w/GCC though)
So I'm trying to include this assembly w/in my Objective-C executable:
__asm volatile(
"pushl %[a5]\n\t"
"pushl %[a4]\n\t"
"call %%ebx\n\t"
...
0
votes
2answers
327 views
about AT&T assembly syntax (%esp,1)
When I read some disassembly code, for I am not up on AT&T syntax, I do not know what some code like (%esp,1) means.
11 printf("%x", a);
0x401386 <main+182>: movl ...

