About 389,000 results
Open links in new tab
  1. 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 …

  2. Correct Way to Load Assembly, Find Class and Call Run() Method

    I want to dynamically build an assembly (.dll), and then load the assembly, instantiate a class, and call the Run () method of that class. Should I try casting the TestRunner class to something?

  3. c - Add two numbers in assembly - Stack Overflow

    Jul 19, 2018 · First of all you need to learn how to use printf, for example by experimenting with some C programs. Then you need to learn how functions are called, what gets passed in …

  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 - Print hello in 64-bit masm - Stack Overflow

    Jan 11, 2022 · I'm a noob for programing. I want to write a program to show hello in 64-bit masm. I use VS code with ml64.exe and gcc. The following is what I write: ;; file name: hello.asm printf …

  6. While, Do While, For loops in Assembly Language (emu8086)

    Feb 23, 2015 · Assuming you know how to implement comparisons and conditional jumps in assembly already, rewrite the code using if and goto first and/or create a flowchart.

  7. assembly - Understanding cmp instruction - Stack Overflow

    The importance of CMP applies mostly in conditional code execution (Jump - See : assembly_conditions). When the processor executes a conditional-jump jcc instruction, it …

  8. Is there a way to insert assembly code into C? - Stack Overflow

    3 For Microsoft compilers, inline assembly is supported only for x86. For other targets you have to define the whole function in a separate assembly source file, pass it to an assembler and link …

  9. Any sources for learning assembly programming in Windows?

    Jun 9, 2011 · I would like to learn Assembly Programming for Windows. But I am having some problems to found material for learning. All the material I see don't give enough code to …

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