mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-22 01:04:39 +00:00
23 lines
202 B
NASM
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
|