YASM version 0.2.1
NASM version 0.98.36
Asm code in test is of type:
----------------------------
;comments
;comments
; .....
bits 16
org 0x100
section .text
BEGIN:
mov etc, etc,
.
.
.
--------------------------
The following line works:
nasm /f bin -otest.com dazzler.asm
(produces test.com)
The same invokation in yasm fails:
yasm /f bin -otest.com dazzler.asm
file.asm:17: label or instruction expected at start of line
NOTES:
1) nasm's /f obj or win32
produce the same error as yasm, however /f bin succeeds!
2) remarking the org 0x100 line allows yasm to produce
the correct test.com output.