I was wondering if anyone would be able to explain this. It seems that wherever there is a backslash NASM omits the line after it. For example in the code below NASM omits the line "mov ax,4". Is this a bug?
I am using NASM 0.98.39 on Windows XP. The following code was assembled into a .COM file.
Thank You!
org 100h
mov ax,1
mov ax,2 ;blah blah blah
mov ax,3 ;\
mov ax,4
mov ax,5 ;Comment blah blah
mov ax,6