About 19,100,000 results
Open links in new tab
  1. terminology - "Assembly" vs. "Assembler" - Stack Overflow

    Then an "assembler" is a device that takes individual machine instructions an puts them together into an "assembly".

  2. How to write hello world in assembly under Windows?

    I wanted to write something basic in assembly under Windows. I'm using NASM, but I can't get anything working. How do I write and compile a hello world program without the help of C …

  3. How is a 2 pass-assembler different from a one pass assembler in ...

    A one pass assembler generates code and for any undefined symbols, leaves a slot to be filled in, and remembers it in a table or other data structure. Then where the symbol is defined, it fills in …

  4. x86 - How Do You Make An Assembler? - Stack Overflow

    The assembler understands only three different assembler codes "mov eax,immed32", "add eax,immed32", "and eax,immed32" and no data nor labels. It will produce a tiny Windows PE …

  5. x86 - What does ORG Assembly Instruction do? - Stack Overflow

    Jun 11, 2020 · can anyone give me a comprehensive description about ORG directive? When and why is it used in assembly written applications? Using Nasm on x86 or AMD64.

  6. bitwise operators - What does the 'and' instruction do to the …

    Dec 4, 2018 · 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, …

  7. Assembler IDE/Simulator for beginner - Stack Overflow

    If there are good simulator/IDE things available for another type of assembler then I could try that instead (assuming there is a good online reference manual available).

  8. What is the best way to go about writing a simple x86 assembler?

    Jan 3, 2010 · I'm interested in writing an x86 assembler for a hobby project. At first it seemed fairly straight forward to me but the more I read into it, the more unanswered questions I find …

  9. How to write if-else in assembly? - Stack Overflow

    Nov 15, 2016 · Not knowing the particular assembly language you are using, I'll write this out in pseudocode: compare input to waterlevel if less, jump to A if equal, jump to B jump to C A: …

  10. x86 - Assembly - JG/JNLE/JL/JNGE after CMP - Stack Overflow

    Mar 8, 2012 · For AT&T syntax, note that the subtraction does the other direction, so read right to left instead of left to right: Regarding cmp / jg, jle, etc in AT&T syntax assembly What does JL …