Tagged Questions

MASM is Microsoft's Macro Assembler tool for converting assembly language to object code. It processes x86 instructions and pseudo instructions written in "Intel syntax". MASM is the standard low-level language for all MSDOS and Windows environments.

learn more… | top users | synonyms

8
votes
2answers
207 views

Infected compiler, or malfunction?

I've encountered something very strange, and things just don't add up. First of all, I posted this here because I'm not sure if this has anything to do with computer virusses at all. And if it does, ...
8
votes
8answers
547 views

Taking an Assembly Course, Stuck in DOS!

I'm taking a course on Microprocessor Programming as part of my Electronic Engineering degree. Unfortunately, in the labs, we have to work in DOS using MASM. Now, I don't really find DOS a hindrance, ...
6
votes
6answers
7k views

Using Visual Studio 2008 to Assemble, Link, Debug, and Execute MASM 6.11 Assembly Code

I would like to use Visual Studio 2008 to the greatest extent possible while effectively compiling/linking/building/etc code as if all these build processes were being done by the tools provided with ...
5
votes
2answers
300 views

How can I transpose an image in Assembly?

I'm working on a project and I need to compute something based on the rows and columns of an image. It's easy to take the bits of the rows of the image. However, to take the bits of each column I need ...
5
votes
2answers
210 views

Write a maximum of two instructions to clear, set and complement some bits in the AL register

You are required to write a maximum of two instructions in assembly to do the following: Clear bits 0 and 7 of register AL, i.e. make them 0 Set bits 3 and 4 of register AL, i.e. make them 1. ...
5
votes
1answer
2k views

MASM/NASM Differences

What are the syntax differences between the NASM and MASM assemblers?
4
votes
2answers
92 views

bt assembly instruction

I have quesetion about bt assembly instruction. I have excerpted part of book to provide context. Please see last example, bt Testme, bx. Why does that copy TestMe+8? Shouldn't it copy TestMe+65? ...
4
votes
2answers
162 views

Decoding hex in masm (null bytes problem)

I am trying to decode an hexed binary string in masm, at first I tried htodw but that wasn't decoding it right, so I tried hex2bin and this one seems to decode fine but I have a problem with null ...
4
votes
4answers
495 views

C code to Assembly question

I need to translate this C code to assembly language code #include <stdio.h> #include <stdlib.h> int main(void) { int answer, i; int right, wrong; right = 0; wrong = 0; ...
4
votes
7answers
389 views

help on win32 api in assembly

why are the structure declarations in assembly different from those in the win32 api documentation.(i am coming from c++ and trying my hand at assembly language) for example i got this function ...
3
votes
5answers
74 views

Can I write assembler code on a per-core basis?

Would anyone be as so kind as to demonstrate how Intel assembly code can represent different threads being worked on by different cores? I presume you don't have one assembly file per thread/core? ...
3
votes
1answer
70 views

Multidimensional array x86

I know how to do this in C++ but in x86 I can not seem anywhere to declare say a 4x4 array. I am just looking for an example to get me started.
3
votes
3answers
163 views

Les instruction purpose?

What is purpose of les instruction in assembly? Why do we need to load es segment and a register? Book gives following example: les bx, p ; Load p into ES:BX mov es:[bx], al ; ...
3
votes
3answers
168 views

Assembly Addressing Modes

Can someone please explain what the difference between the following two are? I'm finding it a little difficult to understand the concepts behind addressing modes mov ax, [bx + di + 10] mov ax, [bx + ...
3
votes
1answer
139 views

Difference between `bx` and `bp`?

What difference between bx and bp in assembly? Example here: mov bx, 1h mov bp, 1h Do they reference same memory? Is same with ss and sp? Sorry for bad English and very much thank you!
3
votes
2answers
408 views

Hardware VGA Text Mode IO in old dos assembly Issue

After reading about at least the first 3 or 4 chapters of about 4 different books on assembly programming I got to a stage where I can put "Hello World" on a dosbox console using MASM 6.11. Imagine my ...
3
votes
3answers
256 views

ENTER and LEAVE in Assembly?

I was reading the Art of Assembly Language. I tried out a console application in that book. It was a program that created a new console for itself using win32 api functions. The program itself has a ...
3
votes
3answers
272 views

What is the minimum file size of a PE file (exe) on Windows? And the minimal memory allocation?

What is the minimum file size of a PE file (exe) on Windows? And the minimum memory allocation? I assembled (using MASM (ml.exe) and link.exe that come with VS 10) the following code: I can not leave ...
3
votes
2answers
140 views

How to catch a tab press in x86 assembly?

I'm working on a project in x86 assembly on Windows (MASM), and I need to somehow catch tab presses, but I'm not sure how to do that in assembly (I'm new to it). I can get get user input with int ...
3
votes
4answers
92 views

Need help with basic ASM

I'm trying to convert some c code to assmebly, and I need some help. char encode(char plain){ __asm{ mov eax, plain add eax, 2 ret } //C code /* char ...
3
votes
5answers
3k views

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 to compile my assembly programs, using MASM and in general it's working ...
3
votes
3answers
1k views

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 can't make division work for the life of me. Here's my code .code main PROC call ...
3
votes
4answers
360 views

Is assembly language `assembler` specific too? Which assembler is best?

I'm learning assembly language. I started with Paul A. Carter's PC Assembly Language which uses NASM (The Netwide Assembler). Then in the middle I switched and started reading Introduction to 80×86 ...
3
votes
2answers
476 views

Assembly language tools and references

I used to do assembly language programming a while back, I was foolish enough to want to get back into it. Back in the day, I used to compile asm code with MASM.EXE command line, writing code with ...
3
votes
2answers
1k views

Why can't I change the value of a segment register? (MASM)

So I decided to teach myself assembly language. I know on a very basic level how this stuff works, but I have never programmed so close to the hardware and I thought that I should definitely know ...
2
votes
1answer
77 views

No console output from program assembled with MASM on win32

I'm running some MASM32 examples (from www.masm32.com) and I notice that the console output is blank in my command line box (program compiles, links and runs but no output. .486 ...
2
votes
1answer
126 views

Counting Set Bits. 16-bit assembly parity program

I am trying to write a subprocedure that will count the number of buts set in a 16bit number, then send that number (bits set) back to the main procedure in AX. The main should display display the ...
2
votes
2answers
80 views

Code Optimization Tips:

I am using the following ASM routine to bubble sort an array. I want to know of the inefficiencies of my code: .386 .model flat, c option casemap:none .code public sample ...
2
votes
2answers
151 views

How do I integrate an ASM obj file with a C++ program?

I want to integrate ASM and C++ code in Visual Studio 2010. Basically, I want to be able to use certain routines created in ASM in my C++ code. So I want to know: How do I add the ASM obj files to ...
2
votes
4answers
95 views

Does MASM change instructions behind your back?

I was surprised by the following when reading the HLA faq: MASM has a nasty habit of changing instructions behind your back. HLA also seems to have this same problem. I then searched ...
2
votes
2answers
133 views

x86 register names, addressing modes, displacement, and storage

I have a few questions about assembly which I am learning and I am confused by. What is the difference between bx and bp and ss and sp? The book says that bx is base register and bp is base ...
2
votes
1answer
48 views

what is the equivalent of _emit in MASM

I'm trying to port some inline assembly code written in Visual Studio into MASM64. The original code uses _emit which is a pseudo instruction that defines one byte at the current location in the ...
2
votes
2answers
192 views

Masm32 assembly program isn't working as expected

I have the following source for an assembly program that I got in a Youtube video tutorial: .386 .model flat, stdcall option casemap:none include c:\masm32\include\windows.inc include ...
2
votes
2answers
107 views

C++ Function Calling Assembly Module

I want to write a customized module in assembly and have my C++ functions invoke it. Instead of starting from scratch I would like to write the "draft" in C and let the compiler generates a blue ...
2
votes
1answer
110 views

what do these lines do in assembly?

I am quite new to assembly. I am always confused by the numbers Can someone please help me ? I am using TASM... so 8066 assembler Is there any good reference that I can use? SCREEN_CLEARER: mov ...
2
votes
3answers
147 views

Why does __int16 and int (32) generate different asm with C++?

I have started learning masm assembly recently, iv been disassembling many of my programs just to have a look. I have noticed that when you use a __int16 (word) the value of it is 1st copied into eax ...
2
votes
3answers
526 views

Difference between masm32 and masm?

I am trying to learn assembly for windows and see that there are 2 assemblers: masm : https://www.microsoft.com/downloads/en/details.aspx?FamilyID=7a1c9da0-0510-44a2-b042-7ef370530c64 masm32 : ...
2
votes
4answers
254 views

Has anyone gotten MASM Assembly Language working in Wine for Linux?

Apparently WIne doesn't support 16bit DOS apps. Anyone know how to Get MASM intel-style assembly working in wine?
2
votes
2answers
806 views

FASM vc MASM trasnlation problem in mov si, offset msg

just did my first test with MASM and FASM with the same code (almos) and I falled in trouble. The only difference is that to produce just the 104 bytes I need to write to MBR in FASM I put org 7c00h ...
2
votes
2answers
355 views

Accessing array in MASM

let's assume I've got the address of my array (passed as a pointer to the function) in esi register. How can I access a particular cell of the array? i.e: my_array[a + b * c] where c is constant. ...
2
votes
2answers
552 views

Quick, beginner MASM register question - DX:AX

I am currently studying for an exam I'll have on x86 assembly. I didn't have much luck googling for ":", too common of a punctuation mark :/ IDIV - Signed Integer Division Usage: IDIV ...
2
votes
2answers
557 views

getting starting address of a stack in assembly programming

is it possible to get the effective starting address of a stack after completing stack operations like push and pop in assembly programming?
2
votes
2answers
2k views

Assembly - Trying to reverse string, but it adds an extra character on the final string

I'm rather new to Assembly (And programming in general, to be honest). I'm trying to play with the stack. The purpose of this code: Take in a String, limited to 80 characters Reprint the String as ...
2
votes
2answers
1k views

DOS Interrupt in masm x86 assembly crashing

I've just begun learning some x86 assembly on win32, and I've used masm with visual studio 2008 using the custom build rule that comes with the ide for .asm files. I've been trying to use the DOS ...
2
votes
1answer
282 views

How do I convert a decimal number to REAL10 in MASM assembly?

Right now I convert the string containing the decimal number to an integer (ignoring the radix point for now), load it into ST(0), and divide by the correct power of ten to account for the radix ...
1
vote
1answer
62 views

C# to MASM difficulity with FILETIME

Now we meet again, StackOverflow... This time i have two lines of C# i would like to convert to assembly. I've tried to follow this answer (FILETIME to __int64) without getting a satisfying result. ...
1
vote
1answer
32 views

Display an image file saved in buffer MASM 5.1

I want to display an image in graphics mode. I have read the image to a buffer. I have made this code but how can I display the pixels on the screen? This code works to display a text file but how can ...
1
vote
1answer
66 views

Is it possible to use Visual Studio to write intel assembly?

As the title states really, is it possible to write assembly code in visual studio? Im looking for an easy to use IDE for writing intel assembly language. I looked at a few IDEs a few months ago and ...
1
vote
2answers
110 views

Assembly code (written for masm) in C program (compiled with gcc)… how?

I have assembly code and I want to implement it into a C program. I've been using masm to get my assembly code working, and I'm using gcc to compile C code. I'm using NetBeans in Windows XP. I want ...
1
vote
1answer
35 views

Trouble moving data into EAX

I am assigning a variable via input and then trying to move that variables value into EAX. It is not working, and I am getting strange results. .386 .model flat, c .stack 100h printf ...

1 2 3 4 5