mirror of
https://github.com/NishiOwO/JWasm.git
synced 2025-04-22 01:04:39 +00:00
12 lines
203 B
NASM
12 lines
203 B
NASM
|
|
;--- test + operator with 2 forward references
|
|
|
|
code segment 'code'
|
|
mov dx,offset buf+bufsize ;sum of 2 forward references
|
|
mov ax,4c00h
|
|
int 21h
|
|
buf equ $
|
|
bufsize equ 200
|
|
code ends
|
|
end
|