.model small .code org 100h start: add si, 7 jmp si dw 0BB1ah mov ah, 9h mov dx, offset msg int 21h mov ah, 4ch int 21h msg db 'Hello$' end start