About 9,530,000 results
Open links in new tab
  1. 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".

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

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

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

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

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

  8. assembly - Programming esp32 and esp8266 - Stack Overflow

    Sep 15, 2020 · I strongly recommend against programming these chips in assembler. WiFi and Bluetooth require software stack of considerable size, are written in C/C++ and not readily …

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

  10. What is MASM ? which we generally use it for learning assembly …

    Apr 12, 2013 · Ans. MASM: Microsoft Macro Assembler The Microsoft Macro Assembler (MASM) is an assembler for the x86 family of microprocessors, originally produced Microsoft MS-DOS …