Answer
org 0x100 ;.com files always start 256 bytes into the segment
; int 21h is going to want…
mov dx,msg ; the address of or message indx
mov ah,9 ; ah=9 – “printstring” sub-function
int 0x21 ;call dos services
mov dl,0x0d ; put CR into dl
mov ah,2 ; ah=2 – “printcharacter” sub-function
int 0x21 ;call dos services
mov dl,0x0a ; put LF into dl
mov ah,2 ; ah=2 – “printcharacter” sub-function
int 0x21 ;call dos services
mov ah,0x4c ; “terminate program”sub-function
int 0x21 ;call dos
OR
OR