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.
0
votes
2answers
24 views
Looping and processing string byte-by-byte in MASM assembly
I am using MASM assembly and I am trying to write a loop that processes the string str1 byte-by-byte, changing each lowercase letter into the corresponding capital letter using bit operations. If the ...
0
votes
0answers
15 views
MASM x86 assembly program compile on linux platform
I am new for x86 assembly programming ,currently i am compiling and executing x86 assembly programs on visual studio with MASM assembler, still it is working, but i don't have clear how to x86 ...
0
votes
2answers
20 views
Difference between push myVar , push [myVar] and push OFFSET myVar
I am new to assembly and I'm using MASM.
I see these lines of code and wonder what's the difference between
a) push myVar
b) push [myVar]
c) push OFFSET myVar
How do I know if they are pushing ...
0
votes
1answer
33 views
Why isn't my selection sort code working?
I'm learning assembly. I need to use selection sort to sort a list of integers. I spent hours on the swap function, but I can't figure out why my program stops compiling at the following steps: mov ...
0
votes
1answer
20 views
masm assembly change the color of any thing on screen by using code
I am making a color picker and I want to display the color they have selected. I cant figure out how to change the color of anything. I have tried yo change textbox color or the background color of ...
0
votes
1answer
53 views
masm assembly fastest way to write a binary file
I am trying to make a hexadecimal editor in masm assembly. I wrote some code for the writer part of the hexadecimal editor, but it is slow. I tried 2 different versions of the code. The first code ...
0
votes
3answers
51 views
Importance of Hexadecimal numbers in Computer Science
When studying programming 8085, 8086 and microporcessors in general we always have hexadecimal representation. Its ok that binary numbers are important in computers. But how these hexadecimal numbers ...
0
votes
1answer
28 views
Getting capital letters MASM x86
I am having some problems with getting the amount of uppercase letters in a string that will be passed in by a user. I have to write it in masm. My question is can i use an:
AND al, some bitstream
...
0
votes
1answer
34 views
Converting lowercase character string to uppercase masm
there is a printf statement which tells the compiler to print outStr. outStr is originally set to equal emptybuf[1000] = "??? not translated yet ???";. I am supposed to move my answer into the ...
0
votes
2answers
43 views
masm assembly how to use getpixel to build a color picker
I would like to build a color picker. I have tried this code
invoke GetDC,NULL
mov esi,eax
invoke GetPixel,esi,400,400
invoke lstrcpy,string ,eax
invoke SetDlgItemText,hWin,textbox1,string
invoke ...
-2
votes
0answers
19 views
display hi hello cool in rolling fasion in 8086 [closed]
Can you please explain the logic of this program?
.model small
.stack 64
.data
str db 0,0,0,0,76h,06,0h
db 0h,76h,79h,38h,38h,03fh,00h,00h
db 39h,3fh,3fh,38h
db 0,0,0,0,0,0
.code
mov ...
-2
votes
0answers
23 views
press keypad and display key on monitor in 8086 [closed]
Can you please explain the logic of this program? Thanks in advance.
.model small
.data
prompt db 'press any key',13,10,'$'
msg db 'the key pressed is:$'
msg1 db 'the row and column of the key ...
-2
votes
0answers
25 views
displaying 'FIRE' and 'HELP' on seven segment display
I have the program below for displaying 'FIRE' and 'HELP' in the 7 segment display. But I could not understand this. Can you please explain the logic of each segment? EDISP25, FIRE05 etc.
.MODEL ...
-1
votes
0answers
45 views
conversion of binary to BCD 7 segment display in 8086
I have this code for binary to BCD converter using seven segment display.
But I am not able to understand con1 and con3 part. Can you please explain pseudocode/algorithm or logic behind this code.
...
-3
votes
0answers
24 views
Caesar cipher using assembly language [closed]
I am new to assembly language and I am trying to make a Caesar cipher program in which user enters 15 chars and key value range 0-F hex, can you please help me with it.
What I wrote so far:
.MODEL ...
0
votes
1answer
51 views
MASM Assembly: Floating-Point Calculations
I've been racking my brain for a couple days now and am still actively debugging. I'm trying to compute the average of a couple of numbers and round the result up or down. Here are the necessary ...
0
votes
1answer
57 views
masm assembly how to divide and multiply numbers using the fpu
I am new to masm and assembly and need some help. I have spent probably 6 hours on this already. I have 3 text boxes and 2 buttons. I want one of the buttons to multiply the numbers in the text boxes ...
0
votes
1answer
53 views
Push an argument into stack?
I know that the first four arguments are in the register (RCX, RDX, R8, R9), and that additional arguments are pushed on the stack.
Question:
How to push an argument onto the stack? I tried with ...
0
votes
0answers
20 views
Is it possible to enable code folding for x86 assembly language in Visual Studio 2010?
In Visual Studio 2010, is it possible to enable code folding for assembly language procedures? I'm trying to find a way to expand/collapse procedures in MASM, like this one:
moveNextDigitIntoX PROC
...
2
votes
1answer
75 views
VB.NET Dynamic API calls x64
First of all, i'm new here so please not take the bad if I missed something.
This is my first question on this forum, and I hope to get the right answer.
Problem description:
I'm trying to use ...
-1
votes
1answer
37 views
assembly masm how do you subtract 2 textboxes
I have 2 text boxes with numbers in them. how do I subtract them and put the result in a third text box.
I tried this
.data
gettext1 DB 100 DUP(?)
gettext2 DB 100 DUP(?)
...
-3
votes
0answers
61 views
solving algebra expression(user-input) in assembly 8086(MASM) [closed]
My task is to take algebra expression from user and solving that expression.
Output should be like this:
enter your expression: ((2+2)*2)
answer: 8
Any idea how to program this in assembly ...
1
vote
1answer
56 views
How can I count the amount of negative numbers in an arrary in MASM?
I have written a few programs in MASM such as one that is able to produce a triangle out of letters and spaces depending on the number you give it and one that is able to add and subtract and show you ...
0
votes
0answers
67 views
why my assembly program is not creating/removing directory/file
My teacher assigned me a project to write a DOS program in assembly. The program should create/remove/rename file/directory and change file attributes. I am using masm611.
I 've included dos.inc in my ...
-2
votes
0answers
31 views
Learning assembly programming for x86 [duplicate]
Are there any good resources (online or book) to learn assembly language? Quick searches on Google and Amazon surprisingly led me to nothing interesting. Either really old articles or books, or even ...
0
votes
1answer
28 views
Add an `.inc` file to an assembly language project in Visual Studio
In Visual Studio 2010, how can I add an .inc file to an assembly language project? Here, I'm trying to add irvine32.lib to the project:
1>------ Build started: Project: p10, Configuration: Debug ...
0
votes
2answers
59 views
32-bit MASM program Initializing variables
I am writing a 32-bit MASM program to do numerous arithmetic. I want to initialize variables in my program such as num , val , etc.. in the declaration only once and only the first time. How do I do ...
-5
votes
0answers
57 views
Assembly Calculate the value of the expression [closed]
Assembly
Calculate the value of the expression (the values of the variables are entered from the keyboard)
(a*b+c*d)/d a, d – define byte, b, c – define word
i just wrote some code, ...
0
votes
1answer
67 views
Can we use Two 32 bit reg(32 + 32 = 64) at a time to make it able to take 64bit values? Assembly Language 8086
Assembly Language 8086:
I have make the program for addition it takes two values in console and gives us result.. it can only take value under 32 bits(8 digits) if we give higher value then it will ...
0
votes
0answers
181 views
Assembly Language 8086 add using 32 bit reg & give value in 64bit?
Assembly Language 8086:
I Want add value1 to value2 by using 32bit register and give value under 64bit(equals to 16 digits).. it is Possible to use the space of 2 reg (32+32 = 64bit)?... i Think so ...
0
votes
2answers
211 views
Multiply 2 Values in Assembly Language 8086?
ASSEMBLY LANGUAGE 8086:
I am multiplying two values input from console window. I am using 32 bit registers eax, ebx, but it is not Multiplying the values. The program is running, but it is not ...
0
votes
0answers
39 views
assembly array writing over all previous array values
I am trying to take integers from the terminal and store them into an array. Currently when my program runs it will store the last number inputed from terminal into all spots of the array.
EX: if I ...
0
votes
3answers
108 views
How can I reverse and modify my string in assembly?
I have a project where I want to enter a number and say I enter 3, it gives you an output of,
ZYX**XYZ
ZY****YZ
Z******Z
And a 5 will give you
ZYXWV**VWXYZ
ZYXW****WXYZ
ZYX******XYZ
...
0
votes
1answer
52 views
assembly masm can not figure out how to do a if not less then statement
how in assembly masm do you do a if not less then statement
I have this code in vb.net
If Not variable1 < variable2 Then
count += 1
End If
If Not variable1 < ...
1
vote
2answers
61 views
Jump to specific line in x86 assembly language
In x86 assembly language, is it possible to specify a jump to a specific line number? Here, I'm trying to use the jmp instruction to the line number 3. (I don't yet know of a way to pass a label as a ...
0
votes
0answers
67 views
Step through assembly language functions in Visual Studio 2010
I'm trying to step through an assembly function in Visual Studio 2010, but whenever the debugger reaches the ret statement, a window is displayed with the text "no source available", and then the ...
0
votes
0answers
48 views
Stdout integers and floating point numbers using MASM 6.11
I have written a very simple program to add two numbers using MASM 6.11. However printing the result back on the screen is the problem. Do I have to convert the float or the integer number to a string ...
-7
votes
1answer
148 views
Nested loops in x86 assembly
Is it possible to create nested loops in x86 assembly?
I'd like to translate this psedocode into correct x86 assembly code (using masm syntax), but I'm not sure how to initialize each loop counter ...
0
votes
1answer
63 views
Invalid instruction operands error during if statement in MASM
I am very new to MASM and am having trouble with an if statement. The compilation error I get is: RNG.asm(61) : error A2070: invalid instruction operands. (line 61 is five up from the bottom)
here is ...
0
votes
2answers
364 views
assembly Language 8086 How to make 64bit integer Calculator?
I want to make 64-bit integer calculator in 8086 assembly language, a calculator which has these functionalities: addition, subtraction, division, multiply.
In Console Window it gives menu like... If ...
0
votes
1answer
67 views
MASM, output from some memory point
reader of this question.
I'm not new with assembly. But I'm new with MASM. (in fact, I was using that hardcore clean tasm stuff for about 8 years without even a single minute of using a single ...
0
votes
1answer
51 views
How can I download (or compile) the libraries “stdlib.lib” and “stdlib.a”? (To use them for assembly)
I have the following code:
include stdlib.a
includelib stdlib.lib
But on assembling, it gives me an error: "cannot open file : stdlib.a"
I haven't any file called "stdlib.lib" or "stdlib.a".
I've ...
0
votes
3answers
63 views
Assembly (MASMx86 PC) duplicating array
I'm working on an encryption project that's got me stumped. I need to apply a series of encryption keys to a string array in order to determine which key was used to encrypt the message. I have the ...
1
vote
1answer
61 views
lstrcat does not work correctly in an MASM program
I have a basic C++ program. Its goal is to display the file names contained in a specific folder. The C++ code is the following :
#include <Windows.h>
#include <iostream>
#include ...
-1
votes
2answers
117 views
assembly x86 command line arguments
I am trying to write a simple program in x86 (using MASM to compile).
It's purpose is to write command line arguments to output (each in a new line).
Here's what I came up with so far:
data1 segment
...
0
votes
2answers
137 views
Convert byte to string in x86 assembly language
In x86 assembly language, is there any efficient way to convert a byte to a string of binary digits (represented as a byte array of 0s and 1s)? As far as I know, there isn't any 'toString' function in ...
0
votes
1answer
50 views
Assembly: What is the best way to print something to screen (to command line)
I've been doing some research, but I only find more and more ways to do what I want and I don't understand any of them.
What code do I need to assemble into an .exe to return 5 to the command line?
...
0
votes
1answer
81 views
how to refresh the screen using masm assembly or an equivalent to application::doevents() in masm assembly
when the program is doing calculations in c++,c#,vb.net you can use the application::doevents() to refresh the screen so the screen do not freeze. how can you do this in assembly particular masm
I ...
0
votes
1answer
48 views
watch a directory for changes using masm assembly
I have been only programming in assembly for 2 weeks now so I am kind of new to assembly and I need some help.
I need to watch a directory and all sub directories for changes. The only changes I need ...
0
votes
1answer
152 views
why is this masm assembly code not working in a loop, code works perfectly the first time but in a loop does not work
hey I have been using masm for 2 weeks now and I am trying to read from a text file line by line that has paths of files in them
example of text file
C:\a.rar
C:\a.txt
C:\a.png
then I want to read ...



