DOS/4GW Protected Mode Run-time Version 1.97
Copyright (c) Rational Systems, Inc. 1990-1994
Open Watcom Assembler Version 1.7
Portions Copyright (c) 1992-2002 Sybase, Inc. All Rights Reserved.
Source code is available under the Sybase Open Watcom Public License.
See http://www.openwatcom.org/ for details.
input.asm(861): Error! E032: Syntax error
input.asm: 928 lines, 0 warnings, 1 errors
The offending line 861 contains this:
PRINT_MESSAGE <13,10,"->"> ; MONITOR prompt
If I change it to this, it assembles okay:
PRINT_MESSAGE <13,10,"--"> ; MONITOR prompt
DOS/4GW Protected Mode Run-time Version 1.97
Copyright (c) Rational Systems, Inc. 1990-1994
Open Watcom Assembler Version 1.7
Portions Copyright (c) 1992-2002 Sybase, Inc. All Rights Reserved.
Source code is available under the Sybase Open Watcom Public License.
See http://www.openwatcom.org/ for details.
input.asm: 928 lines, 0 warnings, 0 errors
Just FYI. :-)
> The offending line 861 contains this:
>
> PRINT_MESSAGE <13,10,"->"> ; MONITOR prompt
>
> If I change it to this, it assembles okay:
>
> PRINT_MESSAGE <13,10,"--"> ; MONITOR prompt
>
Not surprising. The preprocessor in wasm is so broken that it's
probably a waste of time even trying to fix it, it needs to be rewritten
from scratch. (Which is almost certainly never gonna happen, but that's
another problem.)
Michal