Questions tagged as 'programacion-bajo-nivel'

1
answer

How does the "if" work?

I have that question about how if works in low level programming. If you do the check in the RAM going through all the addresses that contain it.     
asked by 02.03.2017 / 23:36
2
answers

Reverse word order in assembler text string

I have a problem with my assembly language project. I was asked to make a program where a string was requested (message) and after entering it, I will show this one in reverse (the last word of the string will be the first, without changing the...
asked by 18.05.2016 / 02:42
2
answers

Add two variables in MASM Assembler

I have a question about the sum in records for MASM Assembler TITLE Suma variables INCLUDE Irvine32.inc .data a dword 10000h b dword 40000h valorFinal dword ? .code main PROC mov eax,a ; empieza con 10000h add eax,b ; suma...
asked by 17.02.2016 / 17:38
0
answers

Print a floating point in an assembler NASM

I'm doing a small program for a University course, they asked us to calculate the Golden number and then print it on the screen, we already have the calculation, now the drawback is that we do not know how to get that number from the FPU...
asked by 13.04.2017 / 18:30
1
answer

Assembly Loop Cycle, from 0 to 9?

Good, I have to do a cycle in assembly language from 1 to 10 that shows the numbers, I already have the cycle but I do not know how to make the interruption to show the numbers on the screen, the cycle is as follows: Assembly .model small...
asked by 01.10.2016 / 00:52
1
answer

How to make a hello world in assembler Nasm in windows?

I would like to know how to make a hello world in nasm with the Windows 8 64-bit operating system. Or should I change to Tasm?     
asked by 23.09.2016 / 20:17
1
answer

Violation of segment with assembler x86-64

In this assembler program, it happens that when doing the commands to create the file .lst and .o I do not have any problem, only when loading the program with ./programa I get the message    segment violation ('core gene...
asked by 25.09.2016 / 04:05
0
answers

Capture plot, save it in memory and display it in lcd

I am currently developing an app in android that sends a string to a bluetooth module HC06 and is picked up by a pic 16f883. I created an interruption that makes it appear on the lcd when the plot arrives, but I do not know how...
asked by 19.07.2016 / 18:05
2
answers

how to add an id to an element created by means of a createElement ("tag");

I want to create a list, to which new elements are added by means of a input (that I already did). But now, I want to delete those elements when I click on them, the thing is that I do not know how to select them, since they do not have a...
asked by 10.09.2018 / 20:14
1
answer

how can I control in python if a file has been downloaded to generate a log and send an email?

for example in linux it will be controlled, it would be after downloading the file if $? -eq0 then echo "El archivo se ha descargado correctamente" | mail root else echo "Ha habido un error, no se a descargado el archivo" | mail root...
asked by 26.10.2018 / 09:21