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

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

  6. What is compiler, linker, loader? - Stack Overflow

    Oct 22, 2010 · I wanted to know in depth meaning and working of compiler, linker and loader. With reference to any language preferably c++.

  7. Assembly code vs Machine code vs Object code? - Stack Overflow

    Jan 21, 2009 · What is the difference between object code, machine code and assembly code? Can you give a visual example of their difference?

  8. python - How to use pyspark VectorAssembler - Stack Overflow

    Apr 21, 2022 · %%spark from pyspark.ml.feature import VectorAssembler assembler = VectorAssembler(inputCols = daily_hashtag_matrix.columns[1:], outputCol = "vector") output = …

  9. Which variable size to use (db, dw, dd) with x86 assembly?

    Dec 19, 2022 · Which one you use depends on what you need to do. For ASCII strings, use db. For pointers, use dd on 32-bit hardware (dq on 64-bit hardware). Most often you're going to be using dd …

  10. object - How does an assembler work? - Stack Overflow

    Jun 21, 2013 · Both an assembler and a compiler translate source files into object files. Object files are effectively an intermediate step before the final executable output (generated by the linker).