0
votes
1answer
32 views

How do x86 jump instructions check their respective flags?

As I understand, conditional jumps check the status of a flag set after the CMP instruction. For example: CMP AX,DX ; Set compare flags JGE DONE ; Go to DONE label if AX >= DX ... ...
0
votes
1answer
27 views

Can Intel VT-x and AMD-V be used in user mode?

Modern CPUs x86 support 'hooking' for certain CPU instructions. Is it possible to utilize these features from ring 3?
2
votes
1answer
66 views

x86 assembly procedure crashes, possibly overlooking simple error

Hello this is my first time posting here, but I am working on a homework assignment that is to design an assembly function syracuse(N, sequence) with these given rules: 1. if N is 1, end loop. 2. if ...
5
votes
1answer
81 views

How do you provoke a floating point error in 32 bits

How do you provoke a floating point error in 32 bits (commonly known as coprocessor error [INT 16 :8086].
1
vote
2answers
71 views

Loop in Intel x86 Assembly going on forever

I'm currently learning Intel x86 Assembly, and I've run into a problem while trying to construct a simple loop, which loops 10 times. It's supposed to stop after the 10 loops, but it keeps going on ...
-1
votes
0answers
36 views

How to correctly use a stack in assembly?

I am trying to do a binary to ASCII converter. I got the conversion down, however it is printing out the number correctly but in reverse. A am trying to use a stack to make it be in the correct order ...
0
votes
1answer
70 views

How to reverse the order of an array in assembly?

Right now my code is giving me 1846 backwards. I have no idea how to reverse the array to print out 1846 and not 6481. I think i need a loop to reverse it but i dont know how to go about implementing ...
5
votes
1answer
64 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
0answers
105 views

Vector Computation and Data Dependencies in Intel x86 assembly language [closed]

"Suppose we wish to write a procedure that computes the inner product of two vectors u and v. An abstract version of the function has a CPE of 16-17 with x86-64 and 26-29 with IA32 for integer, ...
-4
votes
1answer
75 views

Which Assembly Language to Pursue After Intel 8085 ? [closed]

I've the background of Computer Architecture and organisation thanks to my school . The assembly the lecturer used for teaching this subject is Intel 8085(using a simulator) . But it doesn't satisfied ...
0
votes
1answer
116 views

how many instructions on x86 today [closed]

(sorry for my weak english) I am trying to learn up to date x86 assembly all from old 386 base instructions through all the sse additions till now I am reading some things like SSE5 counts 170 new ...
0
votes
0answers
129 views

Asm ascii to binary conversion

im trying to convert ascii input to binary code in variable. Program is working good while number of inputed char is even. Don't know why when its odd i've got the wrong result. If the number of input ...
-2
votes
1answer
108 views

Manually writing C code from Intel assembly language? [closed]

I was wondering if anybody has some professional hints on how to look at simple Intel assembly language and convert it to C code. Any help would be great. Thanks!
0
votes
0answers
78 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
56 views

gcc breaking rax value after function call

I am rewriting some C functions in ASM for practicing. My memset function is setting RAX to the same address passed in the RDI register. But gcc is extending the AL's value with the CDQE instruction. ...
-1
votes
1answer
162 views

How do i use arrays in x86 assembly code to replace letters of a word?

Hey everyone so i am working on an assignment involving arrays in assembly. I need to have the user enter a number, then clear the screen. After that a second player tries to guess the word. I did all ...
3
votes
1answer
100 views

Inlining assembly in Intel Compiler- FASM?

If you wish to write inline assembly within C++ (when compiling C++ with the Intel Compiler) which assembly syntax do you use? Is it FASM/NASM or MASM? and does this matter which OS you are on (or ...
0
votes
1answer
216 views

Intel X86-64 assembly tutorials or book [closed]

I'm tried to search about intel x64 assembly tutorials with examples or a good book but I didn't find even in the intel site. so, Could you suggest me a good tutorials or book for that ?? I'm using ...
0
votes
0answers
59 views

Registers not storing input

I am taking inputs and storing them in registers R1 and R2. Then I perform comparision using CJNE command and if the input stored in R1 or R2 matches with the data in array, I would do something. But ...
0
votes
2answers
67 views

Understanding c function in assembly

I am trying to learn how to understand c functions in assembler. I compiled the following c program using "gcc code.c -m32 -o code -S -fno-stack-protector" #include <stdio.h> void function( ...
0
votes
1answer
58 views

Port is not showing output

I made a program for intel 8051 in assembly. The program compiles fine, executes fine in the simulator but it doesn't show any output on the port. The output port is just empty. Here is the code: ...
0
votes
1answer
52 views

Assembler listing file missing

I have written a program in assembly for intel 8051 microcontroller. I need the assembler listing file .lst but I am unable to find it in the directory the program is assembled. The option for ...
0
votes
1answer
59 views

Using a port for both input and output

I have started learning Intel's 8051 assembly programming. I wrote a a test calculator program. I am using only 3 ports out of four. I am wondering if I can use a port for both input and output in the ...
1
vote
1answer
88 views

How to read the Intel Opcode notation

I am reading some material about Intel Opcodes of assembly instructions, but I cannot understand what does it mean that follows the opcode byte. For esxample: "cw", "cd", "/2", "cp", "/3". Please give ...
3
votes
3answers
175 views

What are the exhaustion characteristics of RDRAND on Ivy Bridge?

After reviewing the Intel Digital Random Number Generator (DRNG) Software Implementation Guide, I have a few questions about what happens to the internal state of the generator when RDRAND is invoked. ...
0
votes
0answers
43 views

Assembly procedure calling from C (Intel 8086) [duplicate]

Possible Duplicate: Intel 8086 Assembly procedure calling from C I need to prepare a procedure in Assembly for Intel 8086 able to be called from a C (pass a string and return an integer ...
1
vote
1answer
324 views

Intel 8086 Assembly procedure calling from C

I need to develop a procedure for Assembly language and call that procedure from C language (pass a string and return an integer value). My assembly procedure works fine "stand-alone". I need help ...
-5
votes
1answer
83 views

Can my computer run x86 32 bit assembly? [closed]

I am on a mac with a 3.06 GHz Intel Core i3 processor. Can it run x86 32 bit assembly?
0
votes
2answers
142 views

Why is Intel assembler syntax dest, src? [closed]

It seems to me that the logical way to order operands for asm operations is src, dest, since English generally prescribes from here to there rather than the reverse. This is AT&T syntax, and is ...
6
votes
1answer
175 views

Why doesn't MS-DOS initialize the DS and ES registers?

Why does the initialization of the DS and ES registers has to be done manually by the programmer? For example: MOV AX,DTSEG MOV DS,AX On the other hand, the CS and SS registers are ...
0
votes
3answers
336 views

moving memory operand to segment register,assembly(x86)

Are we able to move a memory operand to a segment register in these ways using MOV instruction in assembly(x86) language ? 1. MOV DS,[BX] 2. MOV DS,[6401H]
0
votes
2answers
124 views

Problems with dual asm dialect project intel/AT&T

I am working on a project that needs to be compilable with both QNX-Momentics(based on eclipse, g++ 4.6.1 toolchain) and Visual Studio 2010. For some routines I decided to go for manual assembly ...
0
votes
1answer
205 views

purpose of keeping some flag register bits “reserved” in 8086? [closed]

In the flag register of intel 8086 processor,what is the purpose of keeping the bits 12,13,14 and 15 reserved? For example are they useful in the assembly shift commands such as SAR and SHR or ...
1
vote
2answers
216 views

difference between reserved bits and undefined bist in intel 8086 processor's flag register

In the 16-bit flags register of the intel 8086 processor there are 9 flags (each 1-bit, bit numbers 0,2,4,6,7,8,9,10,11 which we know them as ZF,OF,...) the bit numbers 1,3,5 are marked as"U" ...
2
votes
1answer
175 views

Variable references in Intel style inline assembly and AT&T style, C++

I need to compile some assembly code in both Visual Studio and an IDE using G++ 4.6.1. The -masm=intel flag works as long as I do not reference and address any variables, which however I need to do. ...
0
votes
2answers
342 views

How can I count how many clock cycles it takes for the rdtsc instruction to execute?

I know that the unsigned long long gets stored in eax/edx but I'm wondering how can I find out how many clock cycles it takes to execute a single rdtsc instruction? EDIT: Does something like this ...
0
votes
1answer
159 views

NASM string from user input not comparing

It's my second day I'm learning NASM and assembly language at all, so I've decided to write a kind of a calculator. The problem is that when user enters the operation, the program doesn't compare it.I ...
2
votes
1answer
222 views

Any way to move 2 bytes in 32-bit x86 using MOV without causing a mode switch or cpu stall?

If I want to move 2 unsigned bytes from memory into a 32-bit register, can I do that with a MOV instruction and no mode switch? I notice that you CAN do that with the MOVSE and MOVZE instructions. ...
2
votes
1answer
163 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 ...
2
votes
1answer
170 views

How to use MMX in parallel with SSE operations

In Wikipedia, it says: The addition of integer support in SSE2 made MMX largely redundant, though further performance increases can be attained in some situations by using MMX in parallel with SSE ...
0
votes
2answers
1k views

Converting ASCII number to binary in x86

So im reading the user's 8-digit input, and saving it into a variable. for example: Enter an 8-digit hex number: 1ABC5678 So, then i loop through the 1ABC5678 hex number and subtract 48 from numbers ...
0
votes
1answer
82 views

32bit intel assembly comparing and jumping

According to the references I've seen online, examples I've seen, and my overall (weak) knowledge of assembly, this looks like this should work but I keep getting a segmentation error right after I ...
2
votes
1answer
158 views

Why Intel x87 registers are 80 bits wide? [closed]

Why the use of a so "weird" register size? Any documentation on why isn't preferable to use 64 or 128 bits for those registers?
1
vote
0answers
228 views

How to call cpuid instruction in a Mac framework?

I want to use the cpuid instruction to identify features of an Intel CPU. I found the cpuid.h header in Kernel.framework, so I added Kernel.framework to my project and included ...
1
vote
1answer
192 views

Rex prefix decoding for intel x64 arch

In the Intel documentation "Architectures Software Developer’s Manual Vol 2A". Table 2-4 is showing the signification of the REX prefix's bits. Does someone can explain me how to interpret when W=0. ...
2
votes
1answer
232 views

Understanding new gcc prologue

I was wondering why did gcc introduce a new prologue (and epilogue as well) to functions - especially main() since I only analyzed it. For example, before, it was: push ebp mov ebp, esp sub esp, ...
2
votes
2answers
114 views

Power preserving SpinWait

I have a polling loop in C# that needs to poll every 100 microseconds on average < EDIT> (given of course that there is no excessive preemptive thread context switch carried out by Windows due to ...
-1
votes
2answers
166 views

relative offset jumps

How can I force the value of the relative offsets? I know how to do: jmp label_name Would like to do: jmp $0x01 Thank you for your time
2
votes
2answers
403 views

ARM and Intel assembly instruction mapping

This might be a silly question, but is there a webpage/document/book that gives you a mapping of intel x86 and ARM assembly instructions? I'm aware that it's not a 1-to-1 mapping, but I would assume ...
1
vote
2answers
57 views

Which manual should i choose from list of manual on intel's site?

http://www.intel.com/content/www/us/en/processors/architectures-software-developer-manuals.html the above link contains the list of manual provided by intel for assembly language programming. I am ...

1 2 3 4