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