About 70 results
Open links in new tab
  1. 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.

  2. O que é assembler? - Stack Overflow em Português

    Jan 20, 2017 · Assembly A linguagem de programação de baixo nível é o Assembly (linguagem de montagem), que é assemblada por um assembler (o sufixo er em inglês é igual ao nosso dor e …

  3. How is Assembly used in the modern day (with C/C++ for example)?

    Oct 5, 2010 · Often, the assembly written by a beginner-to-medium assembly programmer will be slower than the final machine code generated by a good, modern optimizing compiler. Performance stuff on …

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

    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 …

  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. Using Assembly Language in C/C++ - Stack Overflow

    The only time it's useful to revert to assembly language is when the CPU instructions don't have functional equivalents in C++ (e.g. single-instruction-multiple-data instructions, BCD or decimal …

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

    May 26, 2023 · Wikipedia says that assembly language and assembler language are both fine, I personally call it assembler language because I see that more often, at least on german websites.

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

  9. How do you engineers professionally abbreviate the word, "Assembly ...

    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 ASSY Reply reply …

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