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

15 lines
164 B
NASM

;--- regression in v2.06
;--- negative result of subtraction of 2 labels for 16-bit
.model small
.code
pr1 proc
ret
pr1 endp
dw pr1-$-2
end