jwasm/Regress/TYPES14.ASM
2014-06-18 19:16:56 +04:00

23 lines
202 B
NASM

;--- regression in v2.10
;--- fixed in v2.10a
.386
.model flat
S1 STRUCT
f1 db ?,?
S1 ENDS
.code
v1 S1 <>
if (type v1.f1[ecx]) eq BYTE
dw -1
else
dw 0
endif
end