About 82 results
Open links in new tab
  1. What exactly is assembly language? : r/learnprogramming - Reddit

    Mar 29, 2023 · Assembly is a family of languages that convert the specific CPU's machine code instructions into (somewhat) human readable mnemonical instructions. It is not a single language as …

  2. Is it worth it to learn assembly? : r/learnprogramming - Reddit

    Understanding assembly can help you interpret low-level performance metrics and find issues in your code more efficiently. Assembly language helps in facilitating algorithm optimization. It can be …

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

    The assembly is a piece of code/executable that is in machine executable code. This might be an obj, exe, dll, ... It is the result of a compile. The assembler is the "compiler" that compiles code into …

  4. What does the 'and' instruction do to the operands in assembly …

    Dec 4, 2018 · What does the 'and' instruction do in assembly language? I was told that it checks the bit order of the operands and sets the 1s to true and anything else to false, but I don't know what it …

  5. What do the dollar ($) and percentage (%) signs represent in x86 …

    Sep 28, 2018 · I am trying to understand how the assembly language works for a micro-computer architecture class, and I keep facing different syntaxes in examples: sub $48, %esp mov %eax, …

  6. Module could not be loaded, assembly with same name : r/PowerShell

    Jun 4, 2024 · Import-Module: Assembly with same name is already loaded Ive tried uninstalling the modules, removing them (remove-module, uninstall-module) and then installed and imported again …

  7. Assembly Programming - Reddit

    This is a subreddit for people who need help with programming in assembly and people who want to post their own code to help others out.

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

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

  10. is assembly still in use ? : r/embedded - Reddit

    Aug 29, 2022 · Assembly is only used anywhere in the very rare cases where a human can actually do better than the compiler. Examples may be to take advantage of special SIMD math instructions that …