masm
Outputting issue in assembly
Currently my code is this. resultLbl BYTE\"Coin Information\", 0 sumBYTE\"Number of Coins: \", 0 NumberOfDollars BYTE\"Dollars: \", 0[详细]
2023-04-13 07:55 分类:问答Test if value in EAX is the same as any value in a array x86
I am attempting to test if the random value generated in eax is the same as any value in an array I have allocated. The outer loop generates the array and writes it to the screen and in to the array,[详细]
2023-04-12 16:01 分类:问答Can't find entry point when invoking MASM DLL
I\'m creating simply masm DLL : ; #########################################################################[详细]
2023-04-11 09:45 分类:问答Multidimensional array x86
I know how to do this in C++ but in x86 I can not seem anywhere to declare say a 4x4 array. I am just looking for an example to get me starte开发者_开发百科d.Assembly language doesn\'t have the concep[详细]
2023-04-10 12:36 分类:问答How do I reverse an array in place in assembly?
I am supposed to reverse an array in place. I have been working on it for a while and this is what I have. Can anyone tell me w开发者_Python百科hat I\'m doing wrong?[详细]
2023-04-10 02:42 分类:问答Does MASM change instructions behind your back?
I was surprised by the following when reading the HLA faq: MASM has a nasty habit of changing instructions 开发者_开发知识库behind your[详细]
2023-04-10 02:32 分类:问答How do I implement a datatype, like a stack, in assembly?
I need to implement a custom data structure in assembly. Preferably, it needs to be dynamic. Something like a linked list in C++/Java where each element points to the next element. 开发者_开发知识库Pl[详细]
2023-04-09 21:13 分类:问答What does this piece of code do?
I came across this key logger online and was wondering what the following piece of code actually does. There are 2 lodsd commands in suc开发者_如何转开发cession and that confuses me. And also what is[详细]
2023-04-08 09:42 分类:问答"error A2006: undefined symbol" in masm32 in window 7 64 bit?
When i run this example, I get an error. After removing PROC1 PROC FAR, I get another error "symbol type conflict". With /coff: "leading underscore required for start address : START&qu[详细]
2023-04-07 14:54 分类:问答Why PUSH a variable via a register, rather than PUSH the variable directly in assembly language?
I came across a key logger program in asm in a forum. I though that I might create a key logger myself. When I was reading the code to see what was actually going on in that program, I came across som[详细]
2023-04-07 12:10 分类:问答