About 50 results
Open links in new tab
  1. NASM - The Netwide Assembler - Index

    Dec 5, 2024 · NASM - The Netwide Assembler - Index 15739 Posts in 3784 Topics by 3934 Members. Latest Member: ToyBoy Latest Post: "Re: Snake game for MS-DO..." ( June 16, 2025, 02:23:07 PM ) …

  2. Nasm source does not work - Netwide Assembler

    Aug 27, 2014 · Nasm assembles your source fine but doesn't assemble after you rebuild it with changes you've made. Without further information the source of the problem would appear to exist between …

  3. How to add NASM to `Path` environment variable in Windows 10

    Apr 4, 2019 · NASM - The Netwide Assembler » NASM Forum » Example Code » How to add NASM to `Path` environment variable in Windows 10 « previous next » Print Pages: [1]

  4. Using LEA - load effective address - Netwide Assembler

    Apr 25, 2012 · "lea" is kind of a funny instruction. It calculates an "effective address" - memory - but it doesn't really "do" anything with the memory, it just does arithmetic. Still, it requires a memory …

  5. Input and Output - Netwide Assembler

    Jun 2, 2020 · I am using nasm, linux, x86 section .bss ; you can change user_input: resb 256 ;256 byte of memory is reserved and can be accessed through the name user_input user_input_size equ $- …

  6. get user input and display it to the screen help

    Feb 1, 2012 · NASM - The Netwide Assembler » NASM Forum » Programming with NASM » get user input and display it to the screen help « previous next » Print Pages: [1]

  7. Printing of floating point values - Netwide Assembler

    Oct 24, 2023 · NASM - The Netwide Assembler » NASM Forum » Programming with NASM » Printing of floating point values « previous next » Print Pages: [1]

  8. How to use ld.exe to link Hello World without using libraries/luser32?

    Sep 3, 2018 · Hello and thank you in advance for any replies I get to this topic. I really like how GoLink.exe uses user32.dll directly without any library requirements. I have tested all the codes I …

  9. how to swtich into protected mode/32bit and then back to real …

    Jul 12, 2023 · hi I am writing a monitor able to load and start a Linux kernel. The application is started by the BIOS at 0x7c0 in real-mode and it switches into protected mode. The whole monitor is 32bit and …

  10. Error Message: invalid combination of opcode - forum.nasm.us

    Jul 29, 2007 · In Nasm, only the second is acceptable. If we see: mov eax, something we need to know if it's Masm or Nasm - and if it's Masm, how "something" is declared: something equ 42 would move …