Tagged Questions
The masm32 tag has no wiki summary.
11
votes
3answers
2k views
Assembly - .data, .code, and registers…?
So this morning I posted a confused question about assembly and I received some great genuine help, which I really appreciate.
And now I'm starting to get into assembly and am beginning to understand ...
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
164 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
1answer
115 views
Windows Assembly Doubt - x86
I'm building a Windows Assembly program without any macro. So I downloaded a program that was using macros, and I'm converting this into "pure" assembly code.
However I'm facing one issue here. ...
4
votes
1answer
618 views
Compile Assembly Output generated by VC++?
I have a simple hello world C program and compile it with /FA. As a consequence, the compiler also generates the corresponding assembly listing. Now I want to use masm/link to assemble an executable ...
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
3answers
487 views
Why is my masm32 program crashing whenever I try using interrupts?
Here's the code:
.386 ;target for maximum compatibility
.model small,stdcall ;model
.code
main:
int 20h
END main
Result: http://img705.imageshack.us/img705/3738/resultom.png
...
2
votes
2answers
82 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
154 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
2answers
193 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
1answer
69 views
Assembling COM executables on win xp
Is there a way of assembling x86 code into COM executables? I am using masm32 as my assembler. Can't find enough information on the assembling/linking command line so I always end up getting errors...
...
2
votes
1answer
357 views
How to add number to the unsigned dword with 31bit set to 1 in assembly so it wouldn't be treated as negative?
I am trying to add 5 to 3234567890 in MASM32.
Here is the full sample code:
;--------------------------------------------------------------------------
include \masm32\include\masm32rt.inc
.data
...
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
140 views
RegisterClassEx in Assembly
I'm trying to manually call RegisterClassEx Windows API without using a WNDCLASS structure on .data section, I need to create this structure only using push instruction.
Could someone help me on that ...
2
votes
2answers
254 views
MASM str and substr?
I'm currently coding an irc bot in asm
I have already done this once in C++, so I know how to solve most problems I encounter, but I need a substr()[*] function like the one seen in C++. I need the ...
2
votes
2answers
186 views
Include syntax on MASM32
When including files into MASM32, it cannot find it's own files. After including masm32rt.inc, the assembler cannot find \masm32\include\windows.inc
Apparently most MASM system include files begin ...
1
vote
2answers
87 views
Writing data to a running executable file
I'm trying to run a process, wait for it to finish, open the executable file, and write something to it. So i created a small "loader" which does exactly that.
This is my code:
;Run the executable
...
1
vote
2answers
55 views
How do I implement a datatype, like a stack, in assembly?
I need to implement a custom data structure in assembly. Preferably, it needs to be dynamic. Something like a linked list in C++/Java where each element points to the next element. Please note that ...
1
vote
2answers
71 views
How can a register have address?
According to book, register is a place in CPU with small storage space (example 16 bit on 16 bits CPU). So how does CPU register have address? And how are we able to add displacement to it if it not ...
1
vote
1answer
206 views
mov ax, bx vs. mov ax, [bx]
Sorry bother, I am find difficult to understand book
What is difference in the following two:
mov ax, bx
mov ax, [bx]
If bx contains 100h, and value at memory address 100h is 23, does second one ...
1
vote
1answer
71 views
How does MASM .DATA? directive work internally
In Kip Irvines book I came across the following :
The .DATA? directive declares uninitialized data. When defining a large block of uninitialized data, the .DATA? directive reduces the size of a ...
1
vote
1answer
53 views
Does .data goes to stack or heap in masm?
When you declare variables in the .data segment in MASM, where are those vars allocated? In the stack or in the heap memory? And what about the ".data?" segment?
1
vote
1answer
75 views
How to define binary string variables in MASM?
In c++ I can use define a binary string like this:
char v[] = "\xfc\xe8\x89\x00\x00\x00";
Now I am trying to do that on MASM, I tried this:
v byte fcy, e8y, 89y, 00y, 00y, 00y, 0
But MASM show ...
1
vote
3answers
203 views
What's a good resource for learning MASM code (not HLA)? [closed]
I'm looking for a good online resource for learning MASM code. I've seen some decent things out there (the thing most often referenced is The Art of Assembly Language), but most don't teach what I ...
1
vote
1answer
132 views
Patching code into the MASM-compiled executable file
I have written a simple program in MASM, like:
.386
.model flat, stdcall
option casemap:none
.data
szName db "MASM", 0
.code
start:
mov eax, DWORD PTR [szName]
ret
end start
The i check the code ...
1
vote
2answers
161 views
Assembly program help
I have a program that is supposed to clear the screen and print my name, then new line and print my name again. but when i run it nothing shows up. just program teminated normally. I'm doing this in ...
1
vote
3answers
286 views
INVOKE MASM saving registers automatically?
Is it possible to save cpu registers automatically when I use the Invoke directive in masm?
1
vote
5answers
175 views
Would experimenting with MASM32 break my computer?
Is it safe to play a little bit with it on my computer? I have this hunch that I'm gonna make a terrible mistake while writing some experimental code. Is my fear baseless?
Edit
Thanks for the ...
1
vote
2answers
152 views
Is there an escape character in MASM?
I know that strings surrounded by single quotes can contain double quotes and vice versa, but can a string contain both? For example, the string:
How do you say, "Where's the bathroom?" in Spanish?
1
vote
1answer
123 views
High level macro not recognized - Beginner MASM
main proc
finit
.while ang < 91
invoke func, ang
fstp res
print real8$(ang), 13, 10
print real8$(res), 13, 10
fld ang
fld1
fadd
fstp ang
.endw
ret
main endp
...
1
vote
2answers
545 views
Detecting architecture at compile time from MASM/MASM64
How can I detect at compile time from an ASM source file if the target architecture is I386 or AMD64?
I am using masm(ml.exe)/masm64(ml64.exe) to assemble file32.asm and file64.asm. It would be nice ...
1
vote
3answers
274 views
Intel x86 coprocessor assembly question
I am having some trouble understanding how to retrieve the result of a calculation done using the Intel's x86 coprocessor.
Please consider the following data segment.
.data
res real4 ?
x real4 5.0
...
1
vote
2answers
520 views
Accessing Segment Registers MASM
I'm trying to query the value located in the Process Enviornment Block, pointed to by the FS segment register. Attempting to compile code with the fs:[0] segment included results in an error (error ...
1
vote
2answers
1k views
MASM32 Memory Locations
I am attempting to read from main memory using masm32 assembly and in order to do this I created (as previously recommended in an answer to another of my questions here) an array that will contain the ...
0
votes
1answer
42 views
MASM using registers as expressions between mod operator
I am completely newbie in masm32 and I want to realize such idea which is described in following line of (incorrect) code :
mov ebx,(eax mod any_number)
Compiler gives me error A2026 : constant ...
0
votes
3answers
92 views
x86 assembly (MASM) - Square root of a 64-bit integer?
I'm coding a simple primality tester program for Windows in x86 assembly language (MASM32), which involves calculating a square root of a (64-bit) integer. My question is: Is there any simple way for ...
0
votes
1answer
75 views
MASM32 Assembly - Reading a number from Console
Sorry if this question is really simple, but I tried all that I know and coudn't figure it out.
I'm trying to make a simple procedure which takes a string and a Count from the console and print the ...
0
votes
1answer
33 views
Where to find the stdlib.inc and stdlib.lib files for masm32? [closed]
I am compiling a asm file that invokes the procedure named Random from stdlib.inc.
But I cannot find stdlib.inc and stdlib.lib files in my masm32 environment, where can I find (or download) them?
0
votes
2answers
66 views
Difference between dword ptr and dword ptr:es
I was just checking the disassembly of my C++ program in VS2010. Here it is :
int main()
{
00B613A0 push ebp
00B613A1 mov ebp,esp
00B613A3 sub esp,0D4h
00B613A9 push ...
0
votes
1answer
54 views
masm32 code shows error “A2206”
the following code segment is supposed to walk the InInitializationOrderModuleList inside the PEB and return the base address of kernel32.dll. However, when I try to Console assemble and link the ...
0
votes
1answer
35 views
Getting current day as number on masm?
I want a program to do X task twice a month. So I though about getting the current day as number so I could do something like if day == 1 or 15 then do X
Does someone has a simple masm example to get ...
0
votes
1answer
27 views
How to get the functions (adresses) from a .DLL (Windows) to call them from Masm32
Im writing a Compiler for a Pascal-like language which converts the program in Masm32 (and then to a .exe). My goal is to let the coder include Windows Libraries (.DLL). So I need to read out the ...
0
votes
1answer
71 views
What does this piece of code do?
I came across this key logger online and was wondering what the following piece of code actually does. There are 2 lodsd commands in succession and that confuses me. And also what is the purpose of ...
0
votes
1answer
38 views
Assembly optimization question
I came across a key logger program in asm in a forum. I though that i might create a key logger myself. When i was reading the code to see what was actually going on in that program, i came across ...
0
votes
1answer
37 views
masm32 Linking 2 .obj files (SIMPLE)
I just started to learn masm32 and am a bit confused about the .obj files, I used C# before, so the compiler linked for me, now I have qeditor but I cant find an option to assemble multiple .asm ...
0
votes
1answer
60 views
masm32: SIMPLE array manipulation
I have a very simple problem:
I want to store bytes in a 1d array in masm32 (I just started with it yesterday, used c# before), and then modify it with some simple math, but I didnt found anything ...
0
votes
2answers
92 views
passing arrays to functions in x86 asm
I'm learning x86 asm and using masm, and am trying to write a function which has the equivalent signature to the following c function:
void func(double a[], double b[], double c[], int len);
I'm ...
0
votes
0answers
28 views
masm32 arrfile$ macro causing my program to crash with files with odd numbers of lines
I am a little confused about what I am doing wrong.
I have some code like this . . .
include \masm32\include\masm32rt.inc
.data
m_inFile BYTE "test.txt",0
m_inArray DWORD 0
...
0
votes
1answer
47 views
Adding to buffer in masm?
I want to retrieve a website content as a string in masm, I am using wininet and the page is requested fine, but when I use InternetReadFile to read the content I am not sure how to put it all in the ...