2
votes
3answers
402 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 …
2
votes
5answers
3k 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 …
1
vote
2answers
106 views
Can’t break out of a simple Assembly loop
Hello,
I've been asked to create a simple loop in assembly language but I am having trouble as the loop doesn't end when it should, it continues in an infinite loop.
I need to gi …
1
vote
0answers
43 views
Assembly Programming in Visual Studio 2008
Does anyone have a best practice Project Template for Visual Studio 2008 MASM projects? I don't know why Microsoft shipped VS with MASM but epxect you to use a blank C++ project wh …
1
vote
1answer
59 views
Inline io wait using MASM
How to convert this to use VC++ and MASM
static __inline__ void io_wait(void)
{
asm volatile("jmp 1f;1:jmp 1f;1:");
}
I know asm changes to __asm and we remove the volatile bu …
1
vote
1answer
86 views
XORing at the address stored in EAX
How can you XOR the value stored in EAX?
The problem is at this line:
xor eax, key
EAX contains the address of the value i want to XOR. How can I accomplish this? I though it w …
1
vote
2answers
241 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 …
1
vote
2answers
88 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, …
1
vote
2answers
123 views
Accessing Segment Registers MASM
Hello! 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 re …
1
vote
1answer
95 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 …
1
vote
3answers
318 views
MASM32 loop
I'm trying to make a loop in masm32 running under Windows Vista, however I did it this way and even though it actually finishes the loop, it crashes and I see no obvious reason why …
1
vote
1answer
202 views
Assembly Prototype instruction
I am writing an assignment in MASM32 Assembly and I almost completed it but I have 2 questions I can't seem to answer. First, when I compile I get the message:
INVOKE requires …
1
vote
4answers
252 views
What can cause MASM to display “junk”?
I have some code which is supposed to display a short message. Here's the pertinent code:
DATA SEGMENT 'DATA'
MSG DB 0AH, 0DH, 'Hello, Adam', '$'
CHAR DB 00H
DATA ENDS
COD …
0
votes
2answers
56 views
Decrypt file using XOR
First I'm using MASM, I'm opening an encrypted file and putting it's contents into a buffer and exporting it to a new file. I have everything working except the decrypting portion. …
0
votes
2answers
121 views
Compiling assembly for X86/X64 for use with C#
I would like to add cpuid functionality to my C# app. I found this interesting blog post online. I will probably need MASM to compile this but:
How should I start?
I suspect that …
