Top "Masm" questions

MASM is Microsoft's Macro Assembler tool for converting assembly language to object code.

How to add values?

New to Assembly language, reading a book here. I'm trying to do an simple basic exercise. Using appropriate registers, I …

assembly x86 masm irvine32
Assembly Language (x86): How to create a loop to calculate Fibonacci sequence

I am programming assembly language (x86) in MASM using Visual Studio 2013 Ultimate. I am trying to use an array to …

assembly x86 masm fibonacci irvine32
mov ax, bx vs. mov ax, [bx]

What is the difference between the following two lines? mov ax, bx mov ax, [bx] If bx contains the value 100…

assembly masm masm32
What is meaning of .model small in 8086 programs?

I am a beginner in 8086 assembly language. I can understand the logic used in the program and write small programs …

assembly masm x86-16
masm division overflow

I'm trying divide two numbers in assembly. I'm working out of the Irvine assembly for intel computers book and I …

assembly x86 masm
Difference between lea and offset

ar db "Defference $" What's the difference between mov dx,offset ar and lea dx,ar I think both are doing …

assembly x86 masm tasm
external assembly file in visual studio

I searched and found I can not use __asm in x64 in visual studio. Instead I have to use an …

visual-studio assembly x86 x86-64 masm
MASM under Linux?

Is there a way that I use MASM under Linux. Even tough NASM is quite popular under Linux, it still …

linux masm
Division in 8086 Assembly in MASM

I am writing this assembly program in 8086, but it is not working properly. The quotient and remainder prints out as …

assembly masm masm32
8086 masm program for palindrome checking

.code > > start: > mov ax,03h > int 10h > mov ax,seg msg1 > mov ds,ax &…

assembly masm x86-16 8085