The following produces an error in all descendants of wasm but not ml614 or ml615.
.386
.model flat, stdcall
option casemap:none
include windows.inc
.data?
dcbx DCB <>
.code
program:
xBITRECORD RECORD xBinary:1, xParity:1, xOutxCtsFlow:1, xOutxDsrFlow:1, xDtrControl:2,
xDsrSensitivity:1, xTXContinueOnXoff:1, xOutX:1,xInX:1, xErrorChar:1, xNull:1,
xRtsControl:2, xAbortOnError:1, xDummy2:17
mov dcbx.fbits, xBITRECORD < TRUE, NULL, TRUE, TRUE, DTR_CONTROL_HANDSHAKE, FALSE, \
FALSE, FALSE, FALSE, FALSE, FALSE, RTS_CONTROL_HANDSHAKE, FALSE, NULL >
;gives : Error A2151: Missing operator in expression
ret
end program