-
as seen on Stack Overflow
- Search for 'Stack Overflow'
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 MASM 6.11. The exact version of MASM does not matter, so long as it's within the 6.x range, as that…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
How can I operate on files in masm.
I mean using standard libraries included to microsoft (masm).
Or somethning available in windows without linkink libraries.
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
If I try to assemble the following code, I get a A2006 error ( error A2006: undefined symbol : StrCmp).
Here's my code:
.386
.model flat,stdcall
option casemap:none
include \masm32\include\windows.inc
include \masm32\include\kernel32.inc
include \masm32\include\masm32.inc
include…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi, once again I'm doing MASM programming. I'm trying to write a procedure using the Irvine32 library where the user enters a string which is put into an array of BYTEs with ReadString. Then it loops over that arrray and determines if each character is a number.
However, when I try
cmp [buffer +…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
hi folks,
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 and in MASM 0h.
The problem is on the
mov si, offset msg
that in the first case transletes…
>>> More