Im running a Windows OS 64-bit i am trying to do a simple Helloworld Using NASM Shell Already had MingW Installed, its just that when the exe.file is executed it shows win32 exception, and .exe file has stopped working
Already tried to compile using nasm -f elf64 and gcc
Sample ASM File `
SECTION .data       
msg:    db "Hello World",10 
len:    equ $-msg       
                
    SECTION .text       
        global main     
main:               
    
    mov edx,len     
    mov ecx,msg     
    mov ebx,1       
    mov eax,4       
    int 0x80        
    
    mov ebx,0       
    mov eax,1       
    int 0x80        
`
Im just expecting a simple Hello World Using Assembly Language, already tried to install linux subservice for windows
 
    