Top "Masm" questions

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

LNK 2001 unresolved external symbol _mainCRTStartup MASM

I'm learning Assembly at my university, and we were given a CD with MASM 615 on it, and we're using the …

assembly linker masm irvine32
Assembly Language New Line

I'm brand new to assembly language programming, and I would like my output to have separate lines so that it …

assembly line masm irvine32
Reversing an array in assembly

I'm trying to figure out how to reverse an array in assembly in a way that makes it as flexible …

arrays assembly reverse masm irvine32
MOV src, dest (or) MOV dest, src?

MOV is probably the first instruction everyone learns while learning ASM. Just now I encountered a book Assembly Language Programming …

assembly x86 nasm masm gnu-assembler
Assembly difference between TASM and MASM

I am learning TASM at University, but information regarding TASM on the web seems to be very limited. I have …

assembly masm tasm
Force visual studio to always 'rebuild all' when debugging

Edit: Basically what I need is for visual studio to always rebuild all when I hit debug. I'm currently using …

visual-studio visual-studio-2010 assembly compilation masm
Printing Hexadecimal Digits with Assembly

I'm trying to learn NASM assembly, but I seem to be struggling with what seems to simply in high level …

assembly x86 nasm masm
Factorial in Assembly Language

I want to find a factorial of a number which is less than 8 using this code. but this is not …

assembly masm masm32
Referencing the contents of a memory location. (x86 addressing modes)

I have a memory location that contains a character that I want to compare with another character (and it's not …

assembly x86 masm addressing-mode
Difference between `bx` and `bp`?

What is the difference between bx and bp in assembly? Example here: mov bx, 1h mov bp, 1h Do they …

assembly masm masm32