About 11,100,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. 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.

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

    Jun 21, 2009 · 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 …

  5. Using C/inline assembly in C# - Stack Overflow

    Normally we'd just rewrite the assembler code in native C# but we're on a tight schedule for getting a prototype together and don't see any reason to reinvent the wheel right away if we can temporarily …

  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 source line into binary.

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

    A two-pass assembler solves this dilemma by devoting one pass to exclusively resolve all (data/label) forward references and then generate object code with no hassles in the next pass. If a data symbol …

  8. Writing functions in x86 assembly with NASM - Stack Overflow

    I am writing code in assembly (NASM) and I want to include functions. At the moment I have: function0: code jmp return0 The function is called with a jump to function0 with the return linking to a

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

  10. What is the function of the push / pop instructions used on registers ...

    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 you push a …