masm
bt assembly instruction
I have quesetion about bt assembly instruction. I have excerpted part of book to provide context. Please see last example, bt Testme, bx. Why does that copy TestMe+8? Shouldn\'t it copy TestMe+65?[详细]
2023-04-06 18:57 分类:问答Syntax errors in my assembly code [closed]
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form. For help clari[详细]
2023-04-06 17:02 分类:问答How to invoke a pointer to a function in MASM
So I\'m trying to invoke a pointer to a function, but I\'m failing. Could somebody please help? I\'m storing the function pointer like so:[详细]
2023-04-05 23:45 分类:问答How to store consecutive bytes in the EBX register
I am trying to store an array of the the fibonacci sequence in consecutive bytes of the EBX register from lowest byte to highest byte. My code works as expected up until this point:[详细]
2023-04-05 10:09 分类:问答Assembly mov segments
Are the following assumptions correc开发者_开发问答t in regards to segment usage? mov ax, [bp] ; Uses SS?[详细]
2023-04-03 08:44 分类:问答"Cannot load VDM IPX/SPX support" when running assembly program
When I try to run an x86 assembly language (built using MASM) program on Windows XP, I get the following error in the command prompt:[详细]
2023-04-02 18:24 分类:问答How can a register have address?
According to book, register is a pl开发者_如何学Cace in CPU with small storage space (example 16 bit on 16 bits CPU). So how does CPU register have address? And how are we able to add displacement to[详细]
2023-04-02 18:08 分类:问答passing arrays to functions in x86 asm
I\'m learning x86 asm and using masm, and am trying to write a function which has the equivalent signature to the following c function:[详细]
2023-04-02 14:30 分类:问答Difference between `bx` and `bp`?
W开发者_如何学JAVAhat is the difference between bx and bp in assembly? Example here: mov bx, 1h mov bp, 1h[详细]
2023-04-01 05:56 分类:问答x86 register names, addressing modes, displacement, and storage
I have a few questions about assembly which I am learning and I am confused by. What is the difference between bx and bp and ss and sp? The book say开发者_开发技巧s that bx is base register and bp is[详细]
2023-04-01 02:45 分类:问答