Open links in new tab
  1. 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 …

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

  3. How do you engineers professionally abbreviate the word, …

    It's either assy or assembly, never saw it any other way until GA level. Sub assy or sub-assy commonly used. Reply reply cuco33 • Depends on the company but I have seen ASM and …

  4. How to write if-else in assembly? - Stack Overflow

    Nov 15, 2016 · How to write the equal condition (in the question) in assembly? Your example has an else statement while mine uses an else if.

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

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

    May 26, 2023 · 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" …

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

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

  9. Newest 'assembly' Questions - Stack Overflow

    3 days ago · I am trying out assembly for the first time and tried to make a program that waits (sleeps) for 1 second, outputs text and exits (Linux, qemu userspace, 64 bit).

  10. What does edx,ecx,ebx or eax mean in assembly? - Reddit

    Nov 27, 2023 · Hello, I stated learning assembly today and as usual I written my first program , hello world ( in x86 ).As a beginner I don't know edx,ecx,ebx or eax mean. Here is the code. …