Assembly language (asm) programming questions. Also specify the processor or instruction set your question is related to as well as what assembler you are using. **NOTE**: For .NET assemblies, use the tag [.net-assembly] instead.

learn more… | top users | synonyms (3)

0
votes
0answers
4 views

Mips : input three numbers return the sum of the two major

i started to programming in MIPS ASSEMBLY . I need to complete this example but i don't understand why print wrong result: Exscuse me if not all comments are in english but i'm italian and i don't ...
0
votes
1answer
29 views

Why is dynamic binary translation more practical than static binary translation?

When it comes to Binary Translation (Recompilation), I have always heard that dynamic binary translation is often a much better alternative to static binary translation, but I can't ever seem to grasp ...
0
votes
1answer
12 views

Controlling of input size in irvine32 of assembly?

How can i limit the size of input when i was taking player name from user?i am using like that: player1 byte 36 dup(' '),0 but when the player entered larger than 36 characters, computer is giving ...
1
vote
1answer
17 views

IEEE 754 in MIPS w/o FPU

for a homework assignment I'm supposed to multiply a single precision IEEE 754 number stored in the data segment with 4 and store the result back. I perfectly understand how IEEE 754 works and how ...
0
votes
2answers
19 views

Assembler get program parameters

I'm trying to create a program to just write the param on the screen. I created some programs to get the C function parameter, or i used C to send the parameter to my asm program. Is there a way to ...
-3
votes
0answers
32 views

Translate assembly to C [Erase Memory with PIC18]

I am trying to write to flash memory on my PIC18F87J11 but my problem lies with assembly. The datasheet for my PIC has only assembly and I am using C compiler. I was wondering if someone can help me ...
0
votes
2answers
74 views

make sure one cpu has written a “double” before another cpu read that “double”?

I'm going to running one OS on a dual-core ARM Cortex-A9 CPU (one core runs Linux, the other one has no OS). In the no-OS side we write a 64-bit double to DDR memory, then the Linux side reads it. ...
3
votes
2answers
53 views

__stack_size__, __stack_end__ symbols in 'C'

Is there a direct method in which the values of the stack_start and stack_end symbols can be referenced in a 'C' function? I can do this using a bit of assembler to read each symbol and place it to a ...
0
votes
1answer
17 views

setting element of array to zero in assembly

hi I have this data arr1 WORD 1234h, 0abh, 5678h, I am trying to set the last 2 elements of this array to 0 so I did this mov BYTE PTR edi+2, 0, however I get an error saying invalid use of register, ...
1
vote
1answer
17 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 ...
0
votes
1answer
59 views

How do I reassemble a .hex file into C++ for Arduino?

I have a hex file that is to be flashed onto an Atmel chip running on an Arduino device. There are certain aspects of this file that I would like to modify before putting it onto my Arduino, but I ...
3
votes
2answers
119 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
2answers
39 views

How to get input and display it without int 21h

I am currently trying to write a simple operating system and I am having trouble getting and returning user input. Basically because it's OS independent I can't use int21. The code that I am using now ...
1
vote
0answers
19 views

Scan String from keyboard?

I cannot manage to scan a string from the keyboard and then show it o the user in assembly. I could easily do the same with an integer using SCAN_NUM and PRINT_NUM. However I can't figure out how to ...
2
votes
3answers
46 views

Output to devices in Assembly

I was wondering how, exactly, one is able to read and write directly to and from I/O devices using assembly or C with no system libraries. I know, for instance, that you can render to text-based VGA ...
0
votes
1answer
31 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
0answers
28 views

storing a constant in memory using ASM

What would be the proper gcc compilable GAS ASM code to store my constant $3360220 in a memory location 0x7FFFFFFF098? Will this produce the desired result? Is it ok that the movabs instruction ...
-1
votes
4answers
112 views

Defining smallest possible sized macro in C

I want to define a boolean macro in C that uses less than 4 bytes. I have looked into this, and maybe it is possible to define an asm macro, with gcc, that could be less. It is important that the ...
1
vote
2answers
29 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: ...
0
votes
1answer
67 views

Translate assembly to C [Writing to Memory with PIC18] [closed]

I am trying to write to flash memory on my PIC18F87J11 but I have a problem understanding assembly. The datasheet for my PIC has only assembly and I am using C compiler. I was wondering if someone can ...
0
votes
2answers
42 views

Where is the result of addition? Intel 8080

I can't understand the behavior of processing code for Intel 8080. For example I want to add two hex numbers: 3H and 4H so I wrote: MVI A, 3H MVI B, 4H ADD B HLT But where can I find the result ...
0
votes
4answers
73 views

Inline assembly constraint modifiers = and +

I wrote a simple program containing inline assembly code. My code simply adds the variables a and b and returns the result in b. What is confusing me is why the code below generates this instruction ...
0
votes
1answer
41 views

Convert C code to MASM32

This seems a ridiculous question, but I really need to know an easy way to convert C code to MASM32 code (with the .if's, .while's). The code has a single function, but it uses structs (which, I ...
0
votes
1answer
43 views

MIPS assembly - Reading from a file with hexadecimal values

here is my question. I want to read from a txt/dat file using MIPS assembly. Problem is that everyting in the file is hexadecimal such as 0x54ebcda7. When i try to read and load this into a register, ...
1
vote
2answers
27 views

when accessing the stack frame like this <dword ptr [ebp-8]>, is it considered popped?

I found this assembly code and while analyzing it, I realized that I see no cleaning or balancing of the stack here. And I thought that maybe accessing the stack like dword ptr [ebp-8] is equivalent ...
1
vote
3answers
27 views

Accessing stack frames in assembly language

I am new to assembly and then I came across this article it says that this code void MyFunction() { int a, b, c; a = 10; b = 5; c = 2; is equivalent to this push ebp ; save the ...
1
vote
2answers
46 views

Two way address translation or what?

I am looking at the ARM assembly code for a C++ native code. Target platform is Windows Phone 8, and build environment is Visual Studio 2012. I am inspecting the ARM assembly code to look for ...
1
vote
1answer
29 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 ...
1
vote
1answer
17 views

MIPS assembly calculating hypotenuse

I have a MIPS program to compute the hypotenuse from two integers. However the program prints some weird number not the actual result, my best guess is there is something wrong with the square root ...
1
vote
1answer
36 views

What does the usage of mprotect() as an ASM syscall look like with respect to its third argument?

In i386 architecture Linux I know that you can build a syscall by loading the identity of the syscall into EAX and the arguments into EBX, ECX, etc. I am confused by what the third argument for ...
15
votes
4answers
391 views

Why would a compiler generate this assembly?

While stepping through some Qt code I came across the following. The function QMainWindowLayout::invalidate() has the following implementation: void QMainWindowLayout::invalidate() { ...
0
votes
4answers
69 views

Is it possible to beat the Assembler today? [closed]

Apparently it used to be, according to this terrific account by Ed Nather. How about today? That is, is it possible, with enough knowledge of CPU/FPU/GPU/etc. architecture, to write machine code ...
0
votes
1answer
17 views

Can instructions exist in sections other than text?

Is it safe to assume that all instructions within an executable are located inside that executable's text section? I have never seen an executable with a format that violates this assumption.
0
votes
2answers
40 views

VFP using ARM inline assembly

I am trying to write a simple function to use the VFP on my beagleboard. However, Iḿ getting the following error : expected ´)´ before ´:´ token. Here is the code: float floatmod(float a, float b) { ...
-1
votes
0answers
29 views

MMX and asembly

Anyone who could help me rewritting this: into asembly (AT&T) using MMX? Or can present me any other MMX code, that uses 2 tabels of numbers? int i, j; unsigned char macierz3[200][200]; for(i=0; ...
0
votes
1answer
30 views

Call 5 interface on MS-DOS

I have a Hello, World program for MS-DOS that uses int 21h to make system calls. mov dx,hello mov ah,9 int 0x21 mov ah,0 int 0x21 "hello" is the address of the string 'hello, world',13,10,'$'. The ...
0
votes
1answer
78 views

Rotating left is rotating right

In C++ I want to rotate an array of 4 characters once to the left using the assembly instruction ROL. I thought I'd interpret the array as a dword and rotate this dword once to the left and this would ...
1
vote
3answers
75 views

Assembly set address to point to an address

I'm trying to build a linked list in assembly (dont ask why), the linked list has to be in a stack I built. I'm using nasm with intel 80x86 on ubuntu This is the linked list: size_i: struc node ...
0
votes
2answers
36 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 ...
-1
votes
1answer
24 views

Caesar Cipher program not writing output to screen

I am trying to write a caesar cipher program using assembly. There is no error, but when it runs nothing is displayed and it quits silently. This is what I wrote.. .MODEL small .STACK 64 .DATA ...
1
vote
2answers
33 views

overflow flag and conditional jump

In slide , 15 of this document contains that , 1100 = GT - Z clear, and either N set and             V set, or N clear and V set (>) in ...
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
2answers
42 views

ARM assembly: bad instruction “mov32”

I wanted to load a 32bit constant into a register and I found a pseudo-instruction "mov32" on which can do this (mov32 pseudo-instruction). Then I write an assembly file which includes: MOV32 r0, ...
-1
votes
1answer
19 views

Game Pad in Assembly [closed]

I have a football project in assembly language and I want to play with game pad . Is there any reference that I can learn how to work with USB ports , specially game pads?
0
votes
0answers
37 views

How to create hex code from assembler?

I have to generate hex code from assembler to run it on an Intel 8080 CPU. Which software could you recommend to do this? Is there any chance to emulate this on a Ubuntu system?
1
vote
1answer
27 views

Try to print strings in assembler

I am trying to print a few string in MIPS, but when i try print the first message, program prints all of them. .data first_msg: .ascii "Podaj pierwsza liczbe: " second_msg: .ascii "Podaj druga ...
0
votes
2answers
51 views

converting C code into assembly

I'm practicing what I have learned in assembly by converting simple C codes into assembly code. This is the code in C int square_me (int val) { return (val* val) } Here's my code converted into ...
-2
votes
1answer
25 views

How to find the equivalent/corresponding translation of 64bit assembly code from its 32bit counterpart?

if I know what something looks like in the 32bit version of a compiled program (looking at the assembly code), how can I find the 64bit instruction where the same stuff is being carried out in a 64bit ...
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 ...

1 2 3 4 5 178