Questions tagged as 'masm'

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
3
answers

What is the use of the LEA in assembly?

This is what I read about LEA: Load the address of the source operand. Syntax : LEA destino, fuente The source operand must be located in memory, and its displacement is placed in the index or pointer record specified in destinatio...
asked by 22.07.2017 / 02:55