About 48,400,000 results
Open links in new tab
  1. How to write if-else in assembly? - Stack Overflow

    Nov 15, 2016 · 9 Not knowing the particular assembly language you are using, I'll write this out in pseudocode: compare input to waterlevel if less, jump to A if equal, jump to B jump to C A: …

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

    Jun 21, 2009 · 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 …

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

    Oct 24, 2016 · What is the actual purpose and use of the EDI & ESI registers in assembler? I know they are used for string operations for one thing. Can someone also give an example?

  4. Assembly code vs Machine code vs Object code? - Stack Overflow

    Jan 21, 2009 · What is the difference between object code, machine code and assembly code? Can you give a visual example of their difference?

  5. assembly - What are .S files? - Stack Overflow

    Apr 23, 2012 · 123 .S files are source code files written in assembly. Assembly is an extremely low-level form of programming. The files contain assembly instructions to the processor in …

  6. Show current assembly instruction in GDB - Stack Overflow

    I'm doing some assembly-level debugging in GDB. Is there a way to get GDB to show me the current assembly instruction in the same way that it shows the current source line? The default …

  7. assembly - Difference between JE/JNE and JZ/JNZ - Stack Overflow

    Jan 10, 2013 · In x86 assembly code, are JE and JNE exactly the same as JZ and JNZ?

  8. Executing assembler code with python - Stack Overflow

    To put the machine code into memory, there is hardcoded byte string of x86-64 machine code. The code will print 43. In practice, I'd write the code in C shared object library and use inline …

  9. What are some tips for optimizing the assembly code generated …

    Aug 7, 2011 · A brief overview of the compiler: 7Basic is a compiler that aims to compile 7Basic code directly into machine code for the target architecture / platform. Currently 7Basic …

  10. how do i convert my assembly code to executable hex code?

    Dec 17, 2021 · string: call code db 'Hello, world!',0x0A this was written in Nasm I first found this when generating a msfvenom payload, there is an option to specify the language of the …