Hello I found this sample tutorial The clueless guide to Hello World in nasm about basic ASM, when I compile it, everyting goes just fine!!! Great, but when I run it I get this message:
This version of hi.com is not compatible with the version of Windows you are running
This happens on Windows 7 x64 (Which i was told would run fine) with this code
org 100h
mov dx,msg
mov ah,9
int 21h
mov ah,4Ch
int 21h
msg db 'Hello, World!',0Dh,0Ah,'$'