About 8,370,000 results
Open links in new tab
  1. O que é assembler? - Stack Overflow em Português

    Jan 20, 2017 · 17 Assembler Assembler, como o próprio nome diz é um montador, e não um compilador, ainda que ele funcione de forma muito semelhante. Ele pega um texto que é um …

  2. terminology - "Assembly" vs. "Assembler" - Stack Overflow

    May 26, 2023 · Then an "assembler" is a device that takes individual machine instructions an puts them together into an "assembly".

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

    Nov 15, 2016 · Continue to help good content that is interesting, well-researched, and useful, rise to the top! To gain full voting privileges,

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

    Aug 4, 2010 · 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.

  5. x86 - assembly to compare two numbers - Stack Overflow

    Jul 14, 2009 · The assembler does have to do anything; it is the responsibility of the program to write the instructions one after another. The assembler merely converts each instruction …

  6. Do Intel and AMD processor have the same assembler?

    Jul 10, 2009 · 42 AMD and Intel processors (*) have a large set of instructions in common, so it is possible for a compiler or assembler to write binary code which runs "the same" on both. …

  7. 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, …

  8. What do C and Assembler actually compile to? [closed]

    Assembler (a human readable macro language which is translated to machine code) != Assembly (the binary file generated by common language infrastructure compilers, where each operation …

  9. What is the function of the push / pop instructions used on …

    Jan 3, 2011 · When reading about assembler I often come across people writing that they push a certain register of the processor and pop it again later to restore it's previous state. How can …

  10. 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 …