Oops!!Even the 'hello world' can't be compiled again!!
I downloaded the nasm-2.03.01.zip & nasm-2.03.01-win32.zip this morning, and compile the hello.asm in DOS prompt directly.
D:\NASM\asm\Arthur>nasm hello.asm -l hello.lst
hello.asm:3: error: unrecognised special symbol `..start'
hello.asm:22: warning: label alone on a line without a colon might be in error
D:\NASM\asm\Arthur>nasm -fobj hello.asm
hello.asm:22: warning: label alone on a line without a colon might be in error
Shows the error message.Strange....
System problem?
;;;;;;;;;;;;;;;;;;hello.asm;;;;;;;;;;;
SEGMENT code
..start:
mov AX,data
mov DS,AX
mov AX,mystack
mov SS,AX
mov SP,stacktop
mov DX,msg
mov AH,09H
int 21H
mov AX,4c00H
int 21H
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
SEGMENT data
msg DB 'Hello World!!','$'
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
SEGMENT mystack stack
RESB64
stacktop:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;