About 51 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 código …

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

  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 functions on Wi...

  6. Executing assembler code with python - Stack Overflow

    An assembler just has to read text files and write binary files. Whether or not you call that "low level", it has nothing to do with executing custom asm / machine code inside your python program. i.e. there's …

  7. bitwise operators - What does the 'and' instruction do to the operands ...

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

  8. How do I start learning Assembly - Stack Overflow

    Jul 20, 2009 · The best part is that if you want to learn a different assembler, you can just compile gcc as cross compiler, and produce assembler for any supported platform. Remember to disable …

  9. What's the difference between the .asciz and the .string assembler ...

    Apr 26, 2016 · The assembler manual links synonyms in at least one direction, but the official docs don't say that .string has any synonyms, or that .ascii or .asciz have any synonyms. e.g. .zero, .space, and …

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