About 593,000 results
Open links in new tab
  1. Where can I find a list of x86_64 assembly instructions?

    Here is a link to a complete (I think) list of NASM instructions, which I presume also covers the x64 bit instruction set for Intel processors. However, I was hoping there would be a complete …

  2. x86 64 - Assembly registers in 64-bit architecture - Stack Overflow

    Following the answer about assembly registers' sizes: First, what sizes are eax, ax, ah and their counterparts, in the 64-bit architecture? How to access a single register's byte and how to …

  3. Calling printf in x86_64 using GNU assembler - Stack Overflow

    Calling printf in x86_64 using GNU assembler Asked 9 years, 5 months ago Modified 4 years, 2 months ago Viewed 79k times

  4. How to write hello world in assembly under Windows?

    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. How do function calls return a value in x86-64 assembly?

    Nov 22, 2022 · How do function calls return a value in x86-64 assembly? Asked 3 years, 1 month ago Modified 3 years, 1 month ago Viewed 4k times

  6. assembly - Intel 64, rsi and rdi registers - Stack Overflow

    In Intel x86 64 bit architecture there is the rax... rdx registers which are simply A...D general purpose registers. But there are also registers called rsi and rdi which are the "source index" …

  7. How to read input from STDIN in x86_64 assembly?

    Mar 10, 2012 · I am trying to learn x86_64 assembly and I was trying standard input output today and stumbled upon this post Learning assembly - echo program name How would I do the …

  8. assembly - What are the names of the new X86_64 processors …

    Nov 18, 2009 · What little assembly I do (and it's becoming about one day a year) is done in assembly rather than C. Related: Why did they use numbers for register names in x86-64? …

  9. linux - How to print a string to the terminal in x86-64 assembly …

    Dec 22, 2014 · 7 I am new to assembly, and want to first try to get an intuitive feel for how printing a string to the terminal would work, without going through the operating system abstraction …

  10. assembly - x86_64 Linux syscall arguments - Stack Overflow

    What are the calling conventions for UNIX & Linux system calls on i386 and x86-64 In 64-bit mode syscall is preferred because it's faster, available on all x86-64 Linux kernels, and supports 64 …