Skip to main content
Filter by
Sorted by
Tagged with
-2 votes
1 answer
61 views

How did `masm32` get to be hosted on a separate website? [closed]

Here is the masm website https://www.microsoft.com/downloads/en/details.aspx?FamilyID=7a1c9da0-0510-44a2-b042-7ef370530c64 and here is that for masm32 : http://masm32.com/index.htm When I run both ...
Alphonsus's user avatar
0 votes
0 answers
49 views

Is there a setting in Visual Studio 2022 Community that might cause strange MASM assembly results?

I use Visual Studio 2022 Community Edition to assemble and link MASM source code generally intended to create Win32 x86 executable programs. I am working on a program that manipulates data for a ...
Larry Alongi's user avatar
1 vote
0 answers
107 views

Why are the EndDialog and ExitProcess instructions in this sample MASM32 code for x86 not being executed?

In the sample program, I used DialogBoxParam to create a dialog box (dialog box #1) with a 2 menu options (Help1 & Exit1) and 2 corresponding buttons (Help1 & Exit1). The Help1 option executed ...
Larry Alongi's user avatar
0 votes
1 answer
88 views

How do I fix error c101008e: Failed to create the manifest from the identity string:

In response to a question I asked a few days ago, I was advised that I needed to setup a Manifest to use cuebanners in the CueBannerDemo program I created for testing. So, after reading about &...
Larry Alongi's user avatar
0 votes
1 answer
122 views

What does setting a cuebanner do and how do I get it to work?

I asked a question a few days ago and someone suggested setting a cuebanner rather showing a messagebox using WM_MOUSEHOVER. So I wanted to try setting a cuebanner as suggested. I wrote a demo program ...
Larry Alongi's user avatar
1 vote
0 answers
226 views

How can I load symbolic information in Codeview 3.14 from an .exe built with MASM32, ml.exe and link16.exe?

I cannot use ml.exe (MASM32) to directly build an 8086 .asm source. But I was successful doing it separately: first ml /Zi /c ... and then link16 /codeview .obj,,,, (this is the linker for 16 bit. &...
nostromo's user avatar
  • 407
0 votes
0 answers
49 views

Simulation of Virtual Memory Management with Swapping and Access Protection in assembly

these are my project requirements Simulated RAM: A region of fixed size to simulate RAM (e.g., 4 MB). Use VirtualAlloc to reserve two memory regions: Virtual Memory: A larger region to simulate ...
M.Umair Farooq's user avatar
0 votes
0 answers
61 views

MasmBasic assembly code to encrypt any file problem

I had problem with line 15 test.asm(15) : error A2008: syntax error : , the code include \masm32\MasmBasic\MasmBasic.inc .data key db "AMU", 0 keyLength db 3,0 Init Let esi = ...
exe apk world's user avatar
0 votes
0 answers
61 views

MASM32, try to add two user's inputs, however I get letter from ADD [duplicate]

.386 .model flat, stdcall option casemap: none include \masm32\include\kernel32.inc include \masm32\include\masm32.inc includelib \masm32\lib\kernel32.lib includelib \masm32\lib\masm32.lib .data ...
DIlliy's user avatar
  • 3
1 vote
0 answers
45 views

LNK2001 & LNK1120 when trying to include library

I'm trying to include a custom library in MASM32. The library in question is stb_vorbis, it's written in a single .c file and I compile it using the following: gcc -c stb_vorbis.c -o stb_vorbis.obj ar ...
GreatCorn's user avatar
  • 101
0 votes
0 answers
90 views

RegOpenKeyExA returns error 998 ERROR_NOACCESS in MASM

I tried to write a MASM program that creates new registry key for my exe file: ; Set hKey with RegOpenKeyExA Xor Ecx, Ecx Lea Ebx, [Ebp - 52H] Push Ebx ; phkResult Push 2H ...
Hưng Bạch's user avatar
1 vote
1 answer
67 views

x86 MASM check for palindrome

I’m learning x86 MASM and stuck in a project. The code should be fairly simple but I have no idea what I did wrong, it's supposed to check for Palindrome from an array of characters, but the code ...
user24909579's user avatar
0 votes
0 answers
31 views

Convert binary to hexadecimal using MASM32

This is my MASM32 code: include\masm32\include\masm32rt.inc .data n dd 0 .code convertBH proc num:dword, output:dword local temp:dword local index:dword local hex:dword local ...
Thiện Hoàn's user avatar
1 vote
0 answers
65 views

Cant understand why this code output in a result:ERROR

I think I'm using the right commands to do this task, but for some reason the result is wrong. I have already tried to change this string _res1 db 14 DUP(0),10,13. I also tried to change dword on ...
Bogdan Batyuk's user avatar
1 vote
1 answer
83 views

In MASM what is array[4]

I have a code in MASM, which contains mov bx, 4 mov ax, array[bx] + 4 So array[4] here is the fifth element of the array or 4 bytes and then we add 4 bytes ? What will be the value of AX then?
Muhab Joumaa's user avatar

15 30 50 per page
1
2 3 4 5
41