x86 is a series of computer microprocessor instruction set architectures based on the Intel 8086 CPU.
0
votes
1answer
6 views
using bit-wise operation to invert only the MSB of a binary number
I'm trying to figure out a best way to invert only MSB of a binary number and leaving other bits unchanged, given that the MSB is set.
for example if a binary number is 1111
I tried to and only the ...
2
votes
2answers
97 views
why 128bit variables should be aligned to 16Byte boundary
As we know, X86 CPU has a 64bit data bus. My understanding is that CPU can't access to arbitrary address. The address that CPU could access to is a integral multiple of the width of its data bus. For ...
0
votes
1answer
23 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
...
...
1
vote
2answers
28 views
Computing the number from array's elements in assembly
I read a number from keyboard and stored it in an array called buf. I also have the length of the array in the len variable.
I am trying now to compute the number from that array. My code is this:
...
1
vote
1answer
28 views
Why did mov dx,0 fix this division routine?
A simple loop to find the largest divisor, which would be the integer of the root, in this case dropping out at 5 in a 345 triangle
mov ax,3
mul ax
...
2
votes
1answer
36 views
_mm256_testz_pd not working?
I'm working on Core i7 on Linux and using g++ 4.63.
I tried the following code:
#include <iostream>
#include <immintrin.h>
int main() {
__m256d a = _mm256_set_pd(1,2,3,4);
__m256d z = ...
0
votes
2answers
35 views
invoke error when trying to exit program
I have this code
restart:
mov edx, OFFSET prompt5
call WriteString
mov edx, 0
mov edx , OFFSET buffer
call ReadString
cmp ...
0
votes
1answer
33 views
printing output in assembly x86
I have this code:
INCLUDE Irvine32.inc
.data
arry BYTE ?
prompt1 BYTE "Enter first hex number: ",0
prompt2 BYTE "Enter second hex number: ",0
prompt3 BYTE "The sum is ",0
prompt4 ...
0
votes
2answers
33 views
assembly x86 floating point operations
i am trying to understand how these operations work ...
for example if i have a stack with values
5.0 , 2.0 , 3.0 , 8.0
ST0 , ST1 , ST2 , ST3
what are the results of these operations ?
1, fadd
...
0
votes
0answers
12 views
Boot process interference
I am writing a boot loader and get some wierd system behavior. After loading bootstrap code and switching to the protected mode the system just throws Invalid Opcode interrupt. The code works fine ...
1
vote
1answer
25 views
test if hexadecimal number is in range of 16 bits register
addInt:
clc
mov ax, cx
add ax, bx
JNC convert
how would i be able to test if the sum is in range of 16 bits, since if I add using 16 bits register the result ...
0
votes
1answer
36 views
adding 16 bits registers
I have this code
addInt:
add cx, bx
cmp cx, 0FFFFh
JBE convert
I'm trying to add cx and bx registers, each have the same value of FFFF, instead of getting 1FFFE, I get only ...
0
votes
1answer
35 views
Call jar file from Powershell and process return value
I have the following scenario:
1. I have a Powershell script foo.ps1
2. Within this script, I want to call bar.jar
3. Bar.jar runs a query against an Oracle DB
4. The result of that query should ...
0
votes
1answer
64 views
Leal instruction in for loop
I'm reading a book Computer Systems: A Programmer's Perspective (2nd Edition)
and Practice Problem 3.23 are little confused me:
A function fun_b has the following overall structure:
int ...
0
votes
0answers
7 views
Androidx86 with VirtualBox probem
I try to change resolution of my VM android. to do that, i follow these instrctions :
Switch android x86 screen resolution
http://images.meteociel.fr/im/1389/androidS4_fgo4.png
As you can see, i get ...
-1
votes
1answer
20 views
assembly randomrange always same output
The Irvine procedure gives always the same output.
What would be a better way to get random numbers each time the program executed?
TITLE Program Template (Template.asm)
INCLUDE Irvine32.inc
...
1
vote
1answer
15 views
idivl of two numbers where the first is less than the second (in assembly)
To my understanding, the idivl command in C assembly takes the 64-bit number represented by %edx (the more significant half) and %eax (the less significant), divides it by the argument, and stores the ...
0
votes
2answers
32 views
SPIM equivalent for x86 assembly language
Having learned MIPS, it was super helpful to write simple code and testing it out with SPIM. Being able to see all the registers and stepping through the code really helped me understand what each ...
0
votes
0answers
24 views
Handle Ethernet interrupt in DOS
Is there such thing as Ethernet interrupt in C under DOS for incoming data?
I have written an application that waits for incoming data in my "while(True)" loop and it works perfectly. But I want to ...
1
vote
1answer
22 views
Why does 0xE1 0x4F disassemble to different instructions in LLVM and NDISASM?
In a Bash shell:
$ echo "0xe1 0x4f" | llvm-mc-3.2 -disassemble -triple i386
.section __TEXT,__text,regular,pure_instructions
loope 79
$ echo -n "\xe1\x4f" | ndisasm -b 32 - ...
1
vote
0answers
13 views
How to use Ethernet interrupt with vdx-6354 (vortex86dx)
I am new to vdx-6354 (PC/104) and I am getting familiar with it @ my work.
We need to send/receive data over Ethernet. I have managed to run DSOCKS library demo projects successfully but there is a ...
1
vote
0answers
22 views
The relation between privileged instructions, traps and system calls
I am trying to understand how a virtual machine monitor (VMM) virtualizes the CPU.
My understanding right now is that the CPU issues a protection fault interrupt when a privileged instruction is ...
0
votes
1answer
34 views
IllegalArgumentException in IKVM-compiled DLL
Quick Summary:
My IKVM-compiled JAR-to-DLL libraries work with some methods and classes in a .NET project, but a particular one is throwing an exception that seems to indicate my IKVM.Runtime.JNI is ...
0
votes
1answer
36 views
Matrix representation in NASM
I am trying to write a program implementing matrix using NASM. As a beginner, I try to rewrite the following C code in NASM.
The C Code:
for(i = 0 ; i< 3; i++){
for(j = 0 ;j < 3; ...
0
votes
1answer
35 views
Why isn't my selection sort code working?
I'm learning assembly. I need to use selection sort to sort a list of integers. I spent hours on the swap function, but I can't figure out why my program stops compiling at the following steps: mov ...
1
vote
1answer
45 views
SSE2 instruction to typecast an integer register to short register and vice-versa
Is there any SSE2 instruction to typecast an integer register to short register and vice-versa? Please suggest.
0
votes
2answers
56 views
SSE2 instruction to load integers in reverse order
Is there any SSE2 instruction to load a 128bit int register from a int buffer in the reverse order ?
0
votes
1answer
29 views
check if input number is within range of unsigned 16 bits number
hi I have this code in assembly x86
L1:
mov edx, OFFSET prompt1
call writeString
call readHex
JO L1
I'm trying to check if the unsigned hexadecimal number that I input is larger ...
2
votes
1answer
52 views
Is it possible to atomically load and store on X86 processors?
Can this be done atomically?
void load_and_store(int* dst, int* src) {
int data = *src;
*dst = data;
}
If atomic store has to be done with XCHG [addr], EAX, I would have to load the data into ...
0
votes
0answers
30 views
Windows Porting to x64: MFC x86 DLL implementing OLE Automation for MS Word, Access, DAO
Porting to x64: MFC x86 DLL implementing OLE Automation for MS Word, Access, DAO
I have an app written several years ago that I am porting to x64.
It consists of a VB.Net GUI using .Net 1.1 and ...
0
votes
1answer
20 views
linker error after changed the type of c++ project from x86 to x64
I had a project which was compiled and liked well, but I need to linked it with a 64 bit library and I tried to change the type of project to 64 and now the project doesn't linked correctly.
The ...
0
votes
0answers
27 views
linker error when building an applicatio which uses QT
I just compiled qt as explained here:
Compiling Qt 4.8.x for Visual Studio 2012
But when I am compiling my code which was written by somebody else, I am getting this rror:
Error 74 error ...
0
votes
0answers
26 views
Could not load file or assembly 'CrystalDecisions.CrystalReports.Engine' / Windows 2012 server
we have an application written in .NET 4.0 which uses this SAP Crystal Reports. While the same build (x86) is working perfectly OK in Windows 2003/2008 (both x86/x64) with .NET 4.0 framework installed ...
1
vote
1answer
27 views
JavaFX exe bundling for x86 windows systems
usually I deploy my Java apps as a bundle which contains the JVM, so there's no need to install a JVM on the system.
Btw: This is no jnlp applet, this is a normal Swing Application.
I did this using ...
0
votes
1answer
15 views
Confused about data allignment
I'm trying to get my head around why data alignment/padding is necessary. From wikipedia:
"When a modern computer reads from or writes to a memory address, it will do this in word sized chunks"
...
0
votes
1answer
42 views
Noob ASM Questions
I'm trying to learn a bit of assembly over here, and I need a bit of help from the pros!
test.s:
.data
helloworld:
.asciz "printf test! %i\n"
.text
.globl main
main:
push $0x40
push ...
0
votes
2answers
26 views
Incrementing integer values, output unexpected
I am working on an x86 ASM program where part of the output are numbers I have been incrementing at various stages. The output numbers are hardly what I expect... having trouble tracking down the ...
0
votes
1answer
53 views
The assembly code (x86) with jumps and a syscall read function
I would like to ask anyone for help with understanding an assembly code. My problem is:
the code after the label L2 is important, it calls subroutine function. But it seems to me that the program ...
-1
votes
1answer
32 views
How can i get my emgu function to work on x86?
I made a c# project with emgu CV in x64. It does a template-match. However I now realize i need it to work on x86 systems. When i change this in the build settings i get this error:
An unhandled ...
2
votes
1answer
49 views
Two stack in assembly
I am tring to do a game in assembly(something simple, not to complicated kind of snake) and I need two stacks for that. I will be glad if you could show me how to create and use two stacks.
Just for ...
0
votes
1answer
39 views
Converting lowercase character string to uppercase masm
there is a printf statement which tells the compiler to print outStr. outStr is originally set to equal emptybuf[1000] = "??? not translated yet ???";. I am supposed to move my answer into the ...
0
votes
1answer
45 views
INT 21h does not print
I wonder why this procedure does not print:
print:
push ax
push bx
push dx
mov ah, 02h
ciclo:
mov al, [si]
int 21h
inc si
loop ciclo
pop dx
pop bx
pop ax
ret
According to here, calling ...
0
votes
1answer
60 views
frequency table with ascii index and decimal value
I write the code to computer each character in a string's frequency, and the array is index is from 0 to 255, which are ascii index and the value is the frequency that the character appear.
I compare ...
0
votes
3answers
64 views
ARM and GCC Compiling
Hopefully this hasn't been asked and answered already, but I just had a quick question on ARM.
Specifically, if when compiling Android (which has a lot of C and C++), you use GCC to compile, doesn't ...
0
votes
1answer
20 views
Hooking a _userpurge function c++
I want to hook a function from a x86 executeable. That's the functions prototype decompiled with the hex-rays plugin for IDA:
int __userpurge sub_43CE70<eax>(int a1<eax>, int a2, char a3, ...
0
votes
1answer
40 views
Can't seem to figure out how this works [closed]
I'm trying to determine the password in this challenge code, but can't figure out how it works. Does anyone have some tips on how to go about figuring out what it does?
.text:00401000 ...
2
votes
1answer
62 views
Why do byte spills occur and what do they achieve?
What is a byte spill?
When I dump the x86 ASM from an LLVM intermediate representation generated from a C program, there are numerous spills, usually of a 4 byte size. I cannot figure out why they ...
0
votes
0answers
23 views
Is there any other language which compiles to FASM?
FASM is the fastest and most efficient x86/64 assembler out there, and I'm using it as the backend for the compiler of a new language I'm writing.
Since I only use Ubuntu the FASM code which my ...
0
votes
2answers
126 views
Why a power function is often computed as a logarithm?
I am studying some x86 ASM code and what the code really does, it's my understanding that a power function (x^y) internally works as a logarithm function. By internally I mean the CPU registers.
Why ...
0
votes
1answer
34 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 ...
