I'm trying to print hello word with assembly on Windows 10.
I successfully converted the object file to executable file
with nasm -f elf64 hello.asm
and ld hello.o -o hello
but
when I run the file nothing print on screen .
My code:
section .text
global _start ;must be declared for linker (ld)
_start: ;tells linker entry point
mov edx,len ;message length
mov ecx,msg ;message to write
mov ebx,1 ;file descriptor (stdout)
mov eax,4 ;system call number (sys_write)
int 0x80 ;call kernel
mov eax,1 ;system call number (sys_exit)
int 0x80 ;call kernel
section .data
msg db 'Hello, world!', 0xa ;string to be printed
len equ $ - msg ;length of the string