Skip to main content

Questions tagged [assembly]

Assembly language questions. Please tag the processor and/or the instruction set you are using, as well as the assembler, a valid set should be like this: ([assembly] [x86] [gnu-assembler] or [att]). Use the [.net-assembly] tag instead for .NET assemblies, [cil] for .NET assembly language, [wasm] for web assembly, and for Java bytecode, use the tag java-bytecode-asm instead.

1 vote
0 answers
11 views

Web.Config Redirect for Azure.Core not working as expected

I have a Microsoft Web Site project (different than a Web Application) that has version 1.20.0.0 of Azure.Core.dll as an assembly in the project. However, a .cs file in the project is calling for ...
Coliwack's user avatar
-3 votes
0 answers
59 views

function call crash on amd

I made a exe and a dll. Dll calling function in exe. it is fine in intel system but it is crash when amd system. asm { push ebp -> crash here most of the time mov esp,ebp -> crash here rarely ...
Yoyoyo345's user avatar
0 votes
0 answers
8 views

How to use UART in PIC16F877A with assembly code?

I am using UART in PIC16F877A with test board HJ-5G. My oscillator is 4MHz (KDS4.000). I tried to receive data from my computer.(Serial Debug Assistant) But I do not receive anything. And I tried to ...
kkyleyang's user avatar
0 votes
0 answers
15 views

Can i boot from sram when i use arm cortex m3

normally,we boot from flash or ROM, but what if i want to boot from SRAM area(0x20000000_0x3fffffff) instead of Code area(0x00000000_0x1fffffff), should i use startup.s to copy the code to SRAM area? ...
ADemonevil's user avatar
3 votes
1 answer
69 views

Twice as slow SIMD performance without extra copy

I've been optimizing some code, and stumbled across some peculiar case. Here are the two assembly codes: ; FAST lea rcx,[rsp+50h] call qword ptr [Random_get_float3] ;this function ...
Alex's user avatar
  • 576
0 votes
2 answers
63 views

When an embedded c program is created, why is there extra machine code around my compiled c program?

This C program blinks an LED attached to an AVR ATmega32u4. ISR(TIMER1_OVF_vect) // attach Interrupt Sub Routine to TIMER1 { // toggle LED PIND = (1 << PIND5); // #define PIND (*(...
Johnny Jones's user avatar
-1 votes
0 answers
26 views

Difference between comiss and comisd in x64 asm

I wrote some code to compare the value of xmm10 and xmm6 using: comiss xmm10, xmm6 and then comisd xmm10, xmm6 The first one works, and the second one doesn't. I tried using subss xmm10, xmm6 followed ...
Angad Warhadpande's user avatar
0 votes
0 answers
44 views

Why is my array value not equal to a literal?

I am new to assembly and was trying to work with an array. However, I was geting caught when try to compare the array value to a constant stored in a register. From the following code I was expecting ...
Jeremy's user avatar
  • 1
2 votes
0 answers
23 views

Printing 2D array in MIPS

I have been using a few other posts on here to try and figure out what I am doing wrong but I am stuck and could use some help. I am making a game that has an 8x8 "board" (2d array) similar ...
Sara Malos's user avatar
-1 votes
1 answer
29 views

What is wrong with this control for the brightness of a lamp in ATmega328P?

I'm new to assembly and I'm trying to develop a control for the brightness of a lamp for my college. The lamp must have 5 distinct levels of brightness, one off and four levels with gradual increase. ...
Eric Naiber's user avatar
0 votes
0 answers
43 views

signal SIGSEGV: address access protected in __run_exit_handlers

I'm trying to do a packer project for my school, it is made in C and ASM, and for the moment it is supposed to target only ELF files. I have managed to do my section injection, correctly align my new ...
Maxence Gama's user avatar
0 votes
1 answer
38 views

CMake does not compile asm-files (cross-compile)

We set up our build system with CMake and besides C and C++-files we need to compile asm-files (.s). We use a tiarmclang-compiler (LTS3.2.0) and thus need to crosscompile. While everything works for C ...
NetoBF's user avatar
  • 159
1 vote
1 answer
88 views

multidimensional slice access performance in golang

I am working on a little and simple game-of-life in Golang and stumbled on a performance problem during slice access. This is the primary data structure for the game: type Neighbor struct { X, Y ...
Tom's user avatar
  • 119
-1 votes
0 answers
54 views

Why does gdb combine byte values when examining memory as words? [closed]

While examining 4 addresses from $rip as bytes in GDB, it shows 4 individual values. However, when I examine the same addresses as words, it combines that 4 byte values into a single word value. Why ...
Naresh Kumar's user avatar
2 votes
0 answers
55 views

NASM ORG doesn't like SECTION [closed]

Looks like NASM ORG directive doesn't behave correctly in the presence of SECTION directive, in spite that it's compiled to the binary format. I wonder if there's an alternative for ORG in NASM which ...
Ruslan's user avatar
  • 105

15 30 50 per page
1
2 3 4 5
2975