About 50 results
Open links in new tab
  1. [solved] NASM - Help with tutorial for Hello World

    Jun 10, 2022 · Having issues following a NASM 64-bit "hello world" tutorial Beginning x64 Assembly Programming I am not new to programming, but I am new to assembly (and I am open to any other …

  2. array - Netwide Assembler

    Feb 22, 2010 · NASM - The Netwide Assembler NASM Forum Using NASM « previous next » Print Pages: [1] 2

  3. Linking problems - Netwide Assembler

    Mar 13, 2016 · Stick with the code with "ExitProcess" in it. That's for Windows. I can tell you that Jeremy Gordon's GoLink is popular with Nasm Windows users. ld should work, but I can't tell you where to …

  4. NASM, segments and procedures

    Apr 24, 2021 · NASM - The Netwide Assembler » NASM Forum » Programming with NASM » NASM, segments and procedures « previous next » Print Pages: [1]

  5. My first attempt using nasm and adding two vectors!

    Dec 25, 2012 · Hello everybody! This is my first real attempt at using nasm to create a function that I link into a c++ program. The function adds to vectors of integers and returns the result. So it isn't the …

  6. Random number - forum.nasm.us

    Jul 21, 2009 · Nasm only assembles what x86 (_64) implements. I vaguly recall hearing that some CPU *does* include a "random" instruction, but I can't find it. I use "rdtsc". Since it always comes up with …

  7. Rotate 64-bit word - Netwide Assembler

    Jun 1, 2021 · Working with 64-bit integers and reals in 32 bit nasm. The following asm code should (I hope) count the blanks in one of the dwords of a double dword argument ("ABCD##GH" -> 2).

  8. Operate with integer + floating point numbers

    Sep 11, 2020 · Hello again everybody: I was working hard about this theme and finally i've a method to work with integers & floating point numbers joined. In other words: you can to add, substract, multiply …

  9. MACRO to tell what version/platform of NASM?

    Nov 30, 2006 · Hi. I'm wondering if there is any sort of predefined MACRO I can check for to figure out what platform of NASM is being used? For example, can I use something like: %ifdef WIN32 to …

  10. how to create and use a variable simple howto in nasm please

    May 5, 2012 · how to create and use a variable simple howto in nasm please ; nasm -f bin -o myfile.com myfile.asm bits 16 ; the default for "-f bin" anyway org 100h ; tell Nasm where dos is going to load us …