About 1,220,000 results
Open links in new tab
  1. How to write hello world in assembly under Windows?

    Oct 31, 2022 · The macro variant is the same for both, but you won't learn assembly this way. You'll learn C-style asm instead. invoke is for stdcall or fastcall while cinvoke is for cdecl or …

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

    Dec 4, 2018 · The instruction and performs bit-wise AND operation on its operands. For example the instruction and al, bl should compute the AND operation on the register al and bl (as …

  3. x86 - Assembly - JG/JNLE/JL/JNGE after CMP - Stack Overflow

    Mar 8, 2012 · I don't understand the JG/JNLE/JL/JNGE instructions, which come after CMP. for example, If I have: CMP al,dl jg label1 When al=101; dl =200.

  4. What exactly is an Assembly in C# or .NET? - Stack Overflow

    That compiled code will also be stored in the assembly and reused on subsequent calls. The assembly can also contain resources like icons, bitmaps, string tables and so on. Furthermore, …

  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 …

  6. What is the function of the push / pop instructions used on …

    Jan 3, 2011 · Warning: all the current answers are given in Intel's assembly syntax; push-pop in AT&T syntax for example uses a post-fix like b, w, l, or q to denote the size of the memory …

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

    Nov 15, 2016 · To use if statement in NASM assembly first line should write: comp eax, ebx In this line NASM understands that it should compare two registers. Now u should specify how …

  8. x86 - What does ORG Assembly Instruction do? - Stack Overflow

    Jun 11, 2020 · ORG (abbr. for ORiGin) is an assembly directive and is not an instruction. It defines where the machine code (translated assembly program) is to place in memory. As for …

  9. assembly - Purpose of ESI & EDI registers? - Stack Overflow

    Dec 6, 2009 · Jeff Duntemann in his assembly language book has an example assembly code for printing the command line arguments. The code uses esi and edi to store counters as they will …

  10. assembly - How can I pass parameters in assembler x86 function …

    Jun 23, 2016 · Look at this assembler code. It is designed for 32 bits x86 and will be compiled by nasm ... my_function: pop %eax ... ret main: push 0x08 call my_fun...