masm
Outputting registers to the console with MASM
I\'m one day into learning ASM and I\'ve done a few tutorials, and even successfully modified the tutorial content to use jmp and cmp, etc instead of the MASM .if and .while macros.[详细]
2023-03-29 02:21 分类:问答what is the equivalent of _emit in MASM
I\'m trying to port some inline assembly code written in Visual Studio开发者_运维问答 into MASM64. The original code uses _emit which is a pseudo instruction that defines one byte at the current locat[详细]
2023-03-25 21:20 分类:问答How to convert string to integer in MASM
I want to simply get the user to input a number. I can get input (I think), but this is a string, and I need to conve开发者_如何学Pythonrt it to a number (DWORD). I couldn\'t find anything that worked[详细]
2023-03-25 07:01 分类:问答Where to start learning assembly - IDE, examples
I have a solid knowledge of C#, I can use C quite well, and I am learning C++. I really would like to learn x86 assembly language for Windows, perhaps MASM, but I don\'t know where to start.[详细]
2023-03-24 14:19 分类:问答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?\" seg开发者_开发技巧ment?Neither, they are allo[详细]
2023-03-23 14:04 分类:问答Hardware VGA Text Mode IO in old dos assembly Issue
After reading about at least the first 3 or 4 chapters of about 4 different books on assembly programming I got to a stage where I can put \"Hello World\" on a dosbox console using MASM 6.11. Imagine[详细]
2023-03-23 12:32 分类:问答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:[详细]
2023-03-22 17:43 分类:问答Assembler Problem
I have MASM assembler to \"compile\" 16 bit programs. When I tried to \"compile\" my sample, the MASM throw me some errors:[详细]
2023-03-16 22:48 分类:问答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[详细]
2023-03-13 05:01 分类:问答How do we clear the console in assembly?
I am looking for a win32 api function that clears the console, much like the cls command Thanks! D开发者_运维技巧evjeetThis is pretty old, but should still work. Conversion to assembly language is lef[详细]
2023-03-02 23:41 分类:问答