- assembly - Purpose of ESI EDI registers? - Stack Overflow
What is the actual purpose and use of the EDI amp; ESI registers in assembler? I know they are used for string operations for one thing Can someone also give an example?
- assembly - Difference between JE JNE and JZ JNZ - Stack Overflow
In x86 assembly code, are JE and JNE exactly the same as JZ and JNZ?
- How to write if-else in assembly? - Stack Overflow
How to write the equal condition (in the question) in assembly? Your example has an else statement while mine uses an else if
- x86 - Assembly - JG JNLE JL JNGE after CMP - Stack Overflow
Assembly - JG JNLE JL JNGE after CMP Asked 13 years, 4 months ago Modified 1 year, 7 months ago Viewed 194k times
- What does the and instruction do to the operands in assembly language?
This should be described in the documentation for any assembler that has an and instruction It does a bit-wise Boolean "and" between two operands In other words, corresponding bits (bit n in each operand) are anded, in the Boolean operation sense, giving bit n of the result In Boolean logic, 1 and 1 = 1, but 0 and x (anything else) = 0 Thus, 10111010 and 01101011 results in 00101010 If
- While, Do While, For loops in Assembly Language (emu8086)
While, Do While, For loops in Assembly Language (emu8086) Asked 10 years, 4 months ago Modified 3 years, 5 months ago Viewed 250k times
- Assembly difference between [var], and var - Stack Overflow
I'm learning Assembler and getting to the point where I actually have no clue about the difference between [variable] and variable As the tutorials say, both are pointers, so what is the point of
- assembly - What are SP (stack) and LR in ARM? - Stack Overflow
I am reading definitions over and over again and I still not getting what are SP and LR in ARM? I understand PC (it shows next instruction's address), SP and LR probably are similar, but I just don
|